Skip to content

Commit 27c38f1

Browse files
authored
chore(ci): bump GitHub Actions to Node 24 runtime
actions/checkout@v4 -> @v5 actions/cache@v4 -> @v5 actions/upload-artifact@v4 -> @v6 actions/download-artifact@v4 -> @v7 softprops/action-gh-release@v2 -> @V3 actions/stale@v9 -> @v10 hmarr/auto-approve-action@v4 has no Node 24 release; documented as upstream-blocked. Resolves 5 Node 20 deprecation warnings from release run #29273911295.
1 parent 418a0dd commit 27c38f1

5 files changed

Lines changed: 13 additions & 11 deletions

File tree

.github/workflows/auto-approve.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
pull-requests: write
1919
if: github.actor == 'renovate[bot]' || github.event_name == 'workflow_dispatch'
2020
steps:
21+
# Pinned to v4: hmarr/auto-approve-action has no Node 24 release yet.
22+
# Accept the Node 20 deprecation warning until upstream publishes a new version.
2123
- uses: hmarr/auto-approve-action@v4
2224
with:
2325
review-message: "Auto approved automated PR"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup Deno
2020
uses: denoland/setup-deno@v2
@@ -45,7 +45,7 @@ jobs:
4545
if: github.ref == 'refs/heads/main'
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949

5050
- name: Setup Deno
5151
uses: denoland/setup-deno@v2
@@ -56,7 +56,7 @@ jobs:
5656
run: deno task build:linux:x64
5757

5858
- name: Upload binary artifact
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: stackctl-linux-x64
6262
path: dist/stackctl-linux-x64

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
os: macos-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- uses: denoland/setup-deno@v2
2828
with:
2929
deno-version: v2.x
3030

3131
- name: Cache Deno dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: |
3535
~/.cache/deno
@@ -50,7 +50,7 @@ jobs:
5050
working-directory: dist
5151
run: shasum -a 256 "stackctl-${{ github.ref_name }}-${{ matrix.target }}.tar.gz" > "stackctl-${{ github.ref_name }}-${{ matrix.target }}.tar.gz.sha256"
5252

53-
- uses: actions/upload-artifact@v4
53+
- uses: actions/upload-artifact@v6
5454
with:
5555
name: ${{ matrix.target }}
5656
path: |
@@ -64,9 +64,9 @@ jobs:
6464
permissions:
6565
contents: write
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868

69-
- uses: actions/download-artifact@v4
69+
- uses: actions/download-artifact@v7
7070
with:
7171
pattern: "*"
7272
path: dist/
@@ -77,7 +77,7 @@ jobs:
7777
run: shasum -a 256 stackctl-*.tar.gz > checksums.txt
7878

7979
- name: Create Release
80-
uses: softprops/action-gh-release@v2
80+
uses: softprops/action-gh-release@v3
8181
with:
8282
files: |
8383
dist/stackctl-*.tar.gz

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
issues: write
1616
pull-requests: write
1717
steps:
18-
- uses: actions/stale@v9
18+
- uses: actions/stale@v10
1919
with:
2020
stale-issue-label: ":sleeping: stale"
2121
stale-issue-message: >

.github/workflows/version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
contents: write
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
ref: main
2727

0 commit comments

Comments
 (0)