Skip to content

Commit 04bf609

Browse files
.github: Bump actions/setup-go from 4 to 5 (#8)
* .github: Bump actions/setup-go from 4 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * take go version from go.mod * take go version from go.mod --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Lovro Mažgon <[email protected]>
1 parent 2c0f46c commit 04bf609

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
matrix: ${{ fromJson(needs.resolve-modules.outputs.matrix) }}
2424
steps:
2525
- uses: actions/checkout@v4
26-
- uses: actions/setup-go@v4
26+
- uses: actions/setup-go@v5
2727
with:
28-
go-version: '1.20'
28+
go-version-file: 'go.mod'
2929

3030
- name: golangci-lint
3131
uses: golangci/golangci-lint-action@v3

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- uses: actions/setup-go@v4
13+
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.20'
15+
go-version-file: 'go.mod'
1616

1717
# go test runs tests for all modules
1818
- name: go test

0 commit comments

Comments
 (0)