Skip to content

Commit d711b9e

Browse files
appleboyclaude
andcommitted
chore(deps): bump GitHub Actions to latest versions
- Upgrade actions/setup-go from v6 to v7 - Upgrade actions/cache from v5 to v6 - Upgrade codecov/codecov-action from v6 to v7 - Upgrade wagoid/commitlint-github-action from v5 to v6 - Rename commitlint config to .mjs and convert to ESM, as v6 no longer loads commitlint.config.js Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 910e61d commit d711b9e

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Setup go
20-
uses: actions/setup-go@v6
20+
uses: actions/setup-go@v7
2121
with:
2222
go-version-file: go.mod
2323
check-latest: true

.github/workflows/goreleaser.yml

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

2020
- name: Setup go
2121
id: setup-go
22-
uses: actions/setup-go@v6
22+
uses: actions/setup-go@v7
2323
with:
2424
go-version-file: go.mod
2525
check-latest: true

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fetch-depth: 0
2828

2929
- name: Setup go
30-
uses: actions/setup-go@v6
30+
uses: actions/setup-go@v7
3131
with:
3232
go-version-file: go.mod
3333
check-latest: true
@@ -53,12 +53,12 @@ jobs:
5353
ref: ${{ github.ref }}
5454

5555
- name: Setup Go
56-
uses: actions/setup-go@v6
56+
uses: actions/setup-go@v7
5757
with:
5858
go-version-file: go.mod
5959
check-latest: true
6060

61-
- uses: actions/cache@v5
61+
- uses: actions/cache@v6
6262
with:
6363
path: |
6464
${{ matrix.go-build }}
@@ -71,7 +71,7 @@ jobs:
7171
make test
7272
7373
- name: Upload coverage to Codecov
74-
uses: codecov/codecov-action@v6
74+
uses: codecov/codecov-action@v7
7575
with:
7676
flags: ${{ matrix.os }}
7777

@@ -81,7 +81,7 @@ jobs:
8181
- uses: actions/checkout@v7
8282
with:
8383
fetch-depth: 0
84-
- uses: wagoid/commitlint-github-action@v5
84+
- uses: wagoid/commitlint-github-action@v6
8585

8686
super-linter:
8787
runs-on: ubuntu-latest
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
extends: ['@commitlint/config-conventional'],
33
rules: {
44
'body-max-line-length': [0, 'always', 'Infinity'],

0 commit comments

Comments
 (0)