Skip to content

Commit ade0ee5

Browse files
Flyrellclaude
andcommitted
ci: bump GitHub Actions versions for Node.js 20 deprecation
Bump action versions across all workflows to ensure compatibility with the upcoming Node.js 24 default (June 2nd, 2026): - actions/checkout v4 -> v5 - actions/setup-go v5 -> v6 - actions/upload-artifact v4 -> v5 - actions/download-artifact v4 -> v5 - golangci/golangci-lint-action v7 -> v9 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7cb3dce commit ade0ee5

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212

1313
- name: Set up Go
14-
uses: actions/setup-go@v5
14+
uses: actions/setup-go@v6
1515
with:
1616
go-version: '1.26'
1717

@@ -22,14 +22,14 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
3030
go-version: '1.26'
3131

3232
- name: Run golangci-lint
33-
uses: golangci/golangci-lint-action@v7
33+
uses: golangci/golangci-lint-action@v9
3434
with:
3535
version: v2.10.1

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
if: startsWith(github.ref, 'refs/tags/v')
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Set up Go
15-
uses: actions/setup-go@v5
15+
uses: actions/setup-go@v6
1616
with:
1717
go-version: '1.26'
1818

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.ref == 'refs/heads/main'
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

@@ -34,7 +34,7 @@ jobs:
3434
echo "Next version: $NEXT_VERSION"
3535
3636
- name: Set up Go
37-
uses: actions/setup-go@v5
37+
uses: actions/setup-go@v6
3838
with:
3939
go-version: '1.26'
4040

@@ -60,7 +60,7 @@ jobs:
6060
done
6161
6262
- name: Upload build artifacts
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: binaries
6666
path: dist/
@@ -75,7 +75,7 @@ jobs:
7575
needs: build
7676
steps:
7777
- name: Download build artifacts
78-
uses: actions/download-artifact@v4
78+
uses: actions/download-artifact@v5
7979
with:
8080
name: binaries
8181
path: dist/
@@ -144,7 +144,7 @@ jobs:
144144
done
145145
146146
- name: Upload signed artifacts
147-
uses: actions/upload-artifact@v4
147+
uses: actions/upload-artifact@v5
148148
with:
149149
name: binaries-signed
150150
path: dist/
@@ -155,12 +155,12 @@ jobs:
155155
needs: [build, sign-macos]
156156
steps:
157157
- name: Checkout
158-
uses: actions/checkout@v4
158+
uses: actions/checkout@v5
159159
with:
160160
fetch-depth: 0
161161

162162
- name: Download signed artifacts
163-
uses: actions/download-artifact@v4
163+
uses: actions/download-artifact@v5
164164
with:
165165
name: binaries-signed
166166
path: dist/

0 commit comments

Comments
 (0)