Skip to content

Commit bd3ad47

Browse files
Bump the gh-dependency group in /.github/workflows with 3 updates
Bumps the gh-dependency group in /.github/workflows with 3 updates: [actions/setup-go](https://github.com/actions/setup-go), [actions/checkout](https://github.com/actions/checkout) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/setup-go` from 1 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v1...v5) Updates `actions/checkout` from 1 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...v4) Updates `codecov/codecov-action` from 4.0.1 to 5.0.7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4.0.1...v5.0.7) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2404434 commit bd3ad47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
steps:
1111

1212
- name: Set up Go 1.23.x
13-
uses: actions/setup-go@v1
13+
uses: actions/setup-go@v5
1414
with:
1515
go-version: 1.23.x
1616
id: go
1717

1818
- name: Check out code into the Go module directory
19-
uses: actions/checkout@v1
19+
uses: actions/checkout@v4
2020

2121
- name: Lint
2222
uses: golangci/golangci-lint-action@v6
@@ -29,7 +29,7 @@ jobs:
2929
go test -v -race -tags test -coverprofile=profile.out -covermode=atomic ./...
3030
3131
- name: Upload coverage
32-
uses: codecov/codecov-action@v4.0.1
32+
uses: codecov/codecov-action@v5.0.7
3333
with:
3434
token: ${{ secrets.CODECOV_TOKEN }}
3535
file: ./profile.out

0 commit comments

Comments
 (0)