Skip to content

Commit 432b43d

Browse files
authored
Merge pull request #26 from jferrl/dependabot/github_actions/actions/setup-go-6
chore(deps): bump actions/setup-go from 5 to 6
2 parents 35e4a3a + 2e8c70b commit 432b43d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v5
1515
- name: Set up Go
16-
uses: actions/setup-go@v5
16+
uses: actions/setup-go@v6
1717
with:
1818
go-version-file: go.mod
1919
- name: Build

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v5
14-
- uses: actions/setup-go@v5
14+
- uses: actions/setup-go@v6
1515
with:
1616
go-version-file: go.mod
1717
- name: golangci-lint

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
contents: read # for actions/checkout to fetch code
2222
strategy:
2323
matrix:
24-
go-version: [1.x, 1.25.x]
24+
go-version: [1.25.x]
2525
platform: [ubuntu-latest]
2626
include:
2727
# only update test coverage stats with the most recent go version on linux
28-
- go-version: 1.x
28+
- go-version: 1.25.x
2929
platform: ubuntu-latest
3030
update-coverage: true
3131
runs-on: ${{ matrix.platform }}
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: actions/checkout@v5
4040

41-
- uses: actions/setup-go@v5
41+
- uses: actions/setup-go@v6
4242
with:
4343
go-version: ${{ matrix.go-version }}
4444

0 commit comments

Comments
 (0)