Skip to content

Commit affbd2b

Browse files
authored
chore: bump GitHub Actions to Node 24-compatible versions (#6)
GitHub Actions is forcing Node 24 as the default runtime on 2026-06-02. This bumps actions still on Node 20 to versions that support Node 24: - actions/checkout v4/v5 -> v6 - actions/setup-python v5 -> v6 - actions/setup-node v4 -> v6 - actions/upload-pages-artifact v3/v4 -> v5 - actions/configure-pages v5 -> v6 - actions/deploy-pages v4 -> v5 - actions/labeler v5 -> v6 - actions/stale v9 -> v10 - softprops/action-gh-release v2 -> v3 - release-drafter/release-drafter v6 -> v7 - github/codeql-action/* v3 -> v4 - peter-evans/create-pull-request v6 SHA -> v8.1.1 SHA (DTD only) actions/dependency-review-action remains at v4 (upstream-blocked at Node 20; tracked in TMHSDigital/Developer-Tools-Directory#32). Refs TMHSDigital/Developer-Tools-Directory#18. Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com Made-with: Cursor Signed-off-by: 154358121+TMHSDigital@users.noreply.github.com
1 parent 5e7afdb commit affbd2b

7 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test-plugin:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: '3.12'
1919
cache: 'pip'
@@ -34,10 +34,10 @@ jobs:
3434
matrix:
3535
node-version: [20, 22]
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838

3939
- name: Set up Node.js ${{ matrix.node-version }}
40-
uses: actions/setup-node@v4
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
cache: 'npm'
@@ -76,10 +76,10 @@ jobs:
7676
run:
7777
working-directory: packages/mobile-dev-tools
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v6
8080

8181
- name: Set up Node.js
82-
uses: actions/setup-node@v4
82+
uses: actions/setup-node@v6
8383
with:
8484
node-version: 22
8585
cache: 'npm'

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
matrix:
1818
language: [javascript-typescript]
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Initialize CodeQL
23-
uses: github/codeql-action/init@v3
23+
uses: github/codeql-action/init@v4
2424
with:
2525
languages: ${{ matrix.language }}
2626

2727
- name: Autobuild
28-
uses: github/codeql-action/autobuild@v3
28+
uses: github/codeql-action/autobuild@v4
2929

3030
- name: Perform CodeQL Analysis
31-
uses: github/codeql-action/analyze@v3
31+
uses: github/codeql-action/analyze@v4

.github/workflows/drift-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: read
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: TMHSDigital/Developer-Tools-Directory/.github/actions/drift-check@v1.7
1919
with:
2020
mode: self

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
path: _template
3636
sparse-checkout: site-template
3737

38-
- uses: actions/setup-python@v5
38+
- uses: actions/setup-python@v6
3939
with:
4040
python-version: "3.12"
4141

@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/configure-pages@v6
5050

5151
- name: Upload artifact
52-
uses: actions/upload-pages-artifact@v4
52+
uses: actions/upload-pages-artifact@v5
5353
with:
5454
path: docs
5555

.github/workflows/publish-npm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
run:
1515
working-directory: mcp-server
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: Set up Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: 22
2323
registry-url: 'https://registry.npmjs.org'
@@ -42,10 +42,10 @@ jobs:
4242
run:
4343
working-directory: packages/mobile-dev-tools
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v6
4646

4747
- name: Set up Node.js
48-
uses: actions/setup-node@v4
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version: 22
5151
registry-url: 'https://registry.npmjs.org'

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
create-release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Extract version from tag
1818
id: version
@@ -32,7 +32,7 @@ jobs:
3232
cat release_notes.md
3333
3434
- name: Set up Node.js
35-
uses: actions/setup-node@v4
35+
uses: actions/setup-node@v6
3636
with:
3737
node-version: 22
3838
cache: 'npm'
@@ -51,7 +51,7 @@ jobs:
5151
npm run build
5252
5353
- name: Set up Python
54-
uses: actions/setup-python@v5
54+
uses: actions/setup-python@v6
5555
with:
5656
python-version: '3.12'
5757
cache: 'pip'

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
validate:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Validate plugin.json
1616
run: |

0 commit comments

Comments
 (0)