Skip to content

Commit b4e3195

Browse files
authored
chore: bump GitHub Actions to Node.js 24-compatible versions (#191)
Updates workflow actions to address Node.js 20 deprecation warnings that will become errors on June 2nd, 2026. - actions/checkout@v4 -> v6 - actions/cache@v4 -> v5 - actions/upload-artifact@v4 -> v7 - apple-actions/import-codesign-certs@v3 -> v7
1 parent 9e358cd commit b4e3195

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Cache cargo
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
path: |
2424
~/.cargo/registry

.github/workflows/debian_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
# Step 1: Checkout source code
9494
# ───────────────────────────────────────────────────────────────
9595
- name: Checkout code
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v6
9797
with:
9898
fetch-depth: 0 # Full history for changelog generation
9999

@@ -244,7 +244,7 @@ jobs:
244244
# Step 11: Upload build artifacts
245245
# ───────────────────────────────────────────────────────────────
246246
- name: Upload build artifacts
247-
uses: actions/upload-artifact@v4
247+
uses: actions/upload-artifact@v7
248248
with:
249249
name: ${{ matrix.package }}_${{ env.PACKAGE_VERSION }}_ubuntu${{ matrix.version }}.${{ matrix.distro }}_${{ matrix.arch }}
250250
path: artifacts/

.github/workflows/launchpad_ppa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242

@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Check out release tag
7575
if: steps.check_distro.outputs.should_run == 'true'
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
ref: ${{ steps.get_tag.outputs.tag }}
7979
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ jobs:
7070
steps:
7171
# 1) Checkout repository
7272
- name: Checkout code
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v6
7474

7575
# 2) Cache Cargo build artifacts
7676
- name: Cache cargo
77-
uses: actions/cache@v4
77+
uses: actions/cache@v5
7878
with:
7979
path: |
8080
~/.cargo/registry
@@ -105,7 +105,7 @@ jobs:
105105
# 6) macOS code signing
106106
- name: Import Distribution certificate
107107
if: runner.os == 'macOS'
108-
uses: apple-actions/import-codesign-certs@v3
108+
uses: apple-actions/import-codesign-certs@v7
109109
with:
110110
p12-file-base64: ${{ secrets.DEV_ID_CERT_P12 }}
111111
p12-password: ${{ secrets.DEV_ID_CERT_PASSWORD }}
@@ -222,7 +222,7 @@ jobs:
222222

223223
steps:
224224
- name: Checkout code
225-
uses: actions/checkout@v4
225+
uses: actions/checkout@v6
226226

227227
- name: Convert pre-release to official release
228228
run: |

.github/workflows/update_homebrew_formula.yml

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

2828
steps:
2929
- name: Checkout this repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131

3232
- name: Install gnu-sed
3333
run: brew install gnu-sed

0 commit comments

Comments
 (0)