Skip to content

Commit d53431b

Browse files
okatu-loliclaude
andcommitted
ci: fix tag repo ref and bump deprecated actions
- tag.yml checked out alist-dev/desktop, which now 404s (repo moved to AlistGo/desktop); point checkout and push at AlistGo/desktop. - Bump actions/checkout@v3, actions/setup-node@v3 and pnpm/action-setup@v2 to v4 to clear the Node 20 deprecation warning. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 3f2c3aa commit d53431b

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
repository: AlistGo/desktop
3939
token: ${{ secrets.MY_TOKEN }}
@@ -55,13 +55,13 @@ jobs:
5555
with:
5656
workspaces: "./src-tauri -> target"
5757

58-
- uses: pnpm/action-setup@v2
58+
- uses: pnpm/action-setup@v4
5959
with:
6060
version: 9
6161
run_install: false
6262

6363
- name: Sync node version and setup cache
64-
uses: actions/setup-node@v3
64+
uses: actions/setup-node@v4
6565
with:
6666
node-version: "lts/*"
6767
cache: "pnpm" # Set this to npm, yarn or pnpm.
@@ -129,15 +129,15 @@ jobs:
129129
runs-on: ubuntu-latest
130130
steps:
131131
- name: Checkout repository
132-
uses: actions/checkout@v3
132+
uses: actions/checkout@v4
133133

134-
- uses: pnpm/action-setup@v2
134+
- uses: pnpm/action-setup@v4
135135
with:
136136
version: 9
137137
run_install: false
138138

139139
- name: Sync node version and setup cache
140-
uses: actions/setup-node@v3
140+
uses: actions/setup-node@v4
141141
with:
142142
node-version: "lts/*"
143143
# cache: "pnpm" # Set this to npm, yarn or pnpm.

.github/workflows/release_beta.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ${{ matrix.os }}
5454
steps:
5555
- name: Checkout repository
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
repository: AlistGo/desktop
5959
token: ${{ secrets.MY_TOKEN }}
@@ -74,13 +74,13 @@ jobs:
7474
with:
7575
workspaces: "./src-tauri -> target"
7676

77-
- uses: pnpm/action-setup@v2
77+
- uses: pnpm/action-setup@v4
7878
with:
7979
version: 9
8080
run_install: false
8181

8282
- name: Sync node version and setup cache
83-
uses: actions/setup-node@v3
83+
uses: actions/setup-node@v4
8484
with:
8585
node-version: "lts/*"
8686
cache: "pnpm"
@@ -168,17 +168,17 @@ jobs:
168168
runs-on: ubuntu-latest
169169
steps:
170170
- name: Checkout repository
171-
uses: actions/checkout@v3
171+
uses: actions/checkout@v4
172172
with:
173173
ref: main
174174

175-
- uses: pnpm/action-setup@v2
175+
- uses: pnpm/action-setup@v4
176176
with:
177177
version: 9
178178
run_install: false
179179

180180
- name: Sync node version and setup cache
181-
uses: actions/setup-node@v3
181+
uses: actions/setup-node@v4
182182
with:
183183
node-version: "lts/*"
184184

.github/workflows/tag.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
16-
repository: alist-dev/desktop
16+
repository: AlistGo/desktop
1717
token: ${{ secrets.MY_TOKEN }}
1818

1919
- name: Add tag
@@ -26,4 +26,4 @@ jobs:
2626
uses: ad-m/github-push-action@master
2727
with:
2828
github_token: ${{ secrets.MY_TOKEN }}
29-
repository: alist-dev/desktop
29+
repository: AlistGo/desktop

0 commit comments

Comments
 (0)