Skip to content

Commit ffbbf0c

Browse files
Bump actions/setup-go from 5 to 6 (#62)
* Bump actions/setup-go from 5 to 6 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update Go version matrix to 1.22 and 1.23 - Removed Go 1.21 from test matrix as go.mod requires Go 1.22+ - Added Go 1.23 to ensure compatibility with newer versions - This fixes CI failures related to GOTOOLCHAIN=local --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: coolwednesday <divi229moc@gmail.com>
1 parent b76d146 commit ffbbf0c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
go-version: ['1.22', '1.21']
19+
go-version: ['1.22', '1.23']
2020

2121
steps:
2222
- name: Checkout code into go module directory
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 0
2626

2727
- name: Set up Go ${{ matrix.go-version }}
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
3030
go-version: ${{ matrix.go-version }}
3131
id: Go
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v6
5656

5757
- name: Set up Go 1.22
58-
uses: actions/setup-go@v5
58+
uses: actions/setup-go@v6
5959
with:
6060
go-version: 1.22
6161

0 commit comments

Comments
 (0)