mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-31 19:05:00 +07:00
The workflow run at https://github.com/zed-industries/zed/actions/runs/23557683707 succeeded but threw some warnings for a rather-soon Node.js 20 deprecation (June 2nd). Hence, this PR updates in that context mentioned workflows to newer versions from which on the actions will use Node.js 24. Namely, this updates - `actions/checkout` - `actions/create-github-app-token` and - `peter-evans/create-pull-request` to their latest version which includes said updates. As for their most recent versions, all of these actions just updated their versions to account for said deprecation. Release Notes: - N/A
27 lines
1,015 B
YAML
27 lines
1,015 B
YAML
name: Update All Top Ranking Issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 */12 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_top_ranking_issues:
|
|
runs-on: namespace-profile-2x4-ubuntu-2404
|
|
if: github.repository == 'zed-industries/zed'
|
|
steps:
|
|
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
- name: Set up uv
|
|
uses: astral-sh/setup-uv@caf0cab7a618c569241d31dcd442f54681755d39 # v3
|
|
with:
|
|
version: "latest"
|
|
enable-cache: true
|
|
cache-dependency-glob: "script/update_top_ranking_issues/pyproject.toml"
|
|
- name: Install Python 3.13
|
|
run: uv python install 3.13
|
|
- name: Install dependencies
|
|
run: uv sync --project script/update_top_ranking_issues -p 3.13
|
|
- name: Run script
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: uv run --project script/update_top_ranking_issues script/update_top_ranking_issues/main.py --github-token "$GITHUB_TOKEN" --issue-reference-number 5393
|