Skip to content

Commit 169f4fd

Browse files
committed
Fix GitHub Actions deprecation warnings
1 parent 98d970f commit 169f4fd

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
env:
5656
RELEASE_CHANNEL: ${{ inputs.environment }}
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v6
5959
with:
6060
repository: ${{ inputs.repository || github.repository }}
6161
ref: ${{ inputs.ref }}
6262
submodules: recursive
63-
- uses: actions/setup-node@v4
63+
- uses: actions/setup-node@v6
6464
with:
6565
node-version: ${{ env.NODE_VERSION }}
6666
cache: yarn
@@ -132,16 +132,16 @@ jobs:
132132
SEMVER_COMPATIBLE_VERSION:
133133
${{ needs.compute_version.outputs.SEMVER_COMPATIBLE_VERSION }}
134134
steps:
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v6
136136
with:
137137
repository: ${{ inputs.repository || github.repository }}
138138
ref: ${{ inputs.ref }}
139139
submodules: recursive
140-
- uses: actions/setup-python@v5
140+
- uses: actions/setup-python@v6
141141
with:
142142
python-version: '3.11'
143143
- name: Use Node.js ${{ env.NODE_VERSION }}
144-
uses: actions/setup-node@v4
144+
uses: actions/setup-node@v6
145145
with:
146146
node-version: ${{ env.NODE_VERSION }}
147147
cache: yarn
@@ -217,7 +217,7 @@ jobs:
217217
run:
218218
script/generate-appimage-zsync.sh dist/*.AppImage ${{ matrix.arch }}
219219
- name: Upload artifacts
220-
uses: actions/upload-artifact@v4
220+
uses: actions/upload-artifact@v6
221221
with:
222222
name: ${{matrix.friendlyName}}-${{matrix.arch}}
223223
path: |
@@ -243,7 +243,7 @@ jobs:
243243
env:
244244
APP_VERSION: ${{ needs.compute_version.outputs.APP_VERSION }}
245245
steps:
246-
- uses: actions/checkout@v4
246+
- uses: actions/checkout@v6
247247

248248
- name: Download all artifacts
249249
uses: actions/download-artifact@v4
@@ -295,7 +295,7 @@ jobs:
295295
env:
296296
APP_VERSION: ${{ needs.compute_version.outputs.APP_VERSION }}
297297
steps:
298-
- uses: actions/checkout@v4
298+
- uses: actions/checkout@v6
299299

300300
- name: Download all artifacts
301301
uses: actions/download-artifact@v4
@@ -360,7 +360,7 @@ jobs:
360360
done
361361
362362
- name: Upload PKGBUILD files
363-
uses: actions/upload-artifact@v4
363+
uses: actions/upload-artifact@v6
364364
with:
365365
name: PKGBUILDs
366366
path: |

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222

2323
# Initializes the CodeQL tools for scanning.
2424
- name: Initialize CodeQL

0 commit comments

Comments
 (0)