Skip to content

Commit e13b6c6

Browse files
chore: bump GH Actions to Node 24-compatible releases (Sep 2026 deadline) (#6)
Bumps: - actions/checkout v4 -> v6.0.2 (de0fac2) - actions/setup-node v4 -> v6.4.0 (48b55a0) - actions/upload-artifact v4 -> v7.0.1 (043fb46) - actions/download-artifact v4 -> v7.0.0 (37930b1) - actions/cache v4 -> v5.0.5 (27d5ce7) - actions/github-script v7 -> v9.0.0 (3a2844b) Context: GitHub forces Node 24 default on Jun 2, 2026 and removes Node 20 actions Sep 16, 2026. The v4 (checkout/setup-node/upload/download/cache) and v7 (github-script) pins ran on Node 20. Bumped to latest stable Node 24 releases. download-artifact stays on v7 (v8 changes auto-unzip behavior).
1 parent e51f557 commit e13b6c6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
os: [ubuntu-latest, windows-latest]
4545
node-version: ["20", "22"]
4646
steps:
47-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
47+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848

4949
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5050
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
timeout-minutes: 20
2323
steps:
24-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
24+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2525

2626
- name: Initialize CodeQL
2727
uses: github/codeql-action/init@458d36d7d4f47d0dd16ca424c1d3cda0060f1360 # v3.35.5

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
timeout-minutes: 10
2626
steps:
27-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
27+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828

2929
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3030
with:
@@ -54,7 +54,7 @@ jobs:
5454
outputs:
5555
version: ${{ steps.extract.outputs.version }}
5656
steps:
57-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
57+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5858

5959
- name: Extract tag and package.json version
6060
id: extract
@@ -122,7 +122,7 @@ jobs:
122122
permissions:
123123
contents: write
124124
steps:
125-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
125+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
126126
with:
127127
fetch-depth: 0
128128

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
actions: read
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626
with:
2727
persist-credentials: false
2828

@@ -34,7 +34,7 @@ jobs:
3434
publish_results: true
3535

3636
- name: Upload artifact
37-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
37+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3838
with:
3939
name: SARIF file
4040
path: results.sarif

0 commit comments

Comments
 (0)