Skip to content

Commit feaf1ea

Browse files
Bump the github-actions group with 3 updates (#7)
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8194ba5 commit feaf1ea

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
test:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
# A released Go is needed only to `go install` and bootstrap gotip.
2727
- name: Install bootstrap Go
28-
uses: actions/setup-go@v5
28+
uses: actions/setup-go@v6
2929
with:
3030
go-version: stable
3131
cache: false
@@ -35,7 +35,7 @@ jobs:
3535
# newer gotip commit.
3636
- name: Cache gotip toolchain
3737
id: cache-gotip
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: |
4141
~/sdk/gotip
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Module + build cache for faster test runs.
5555
- name: Cache Go modules and build
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: |
5959
~/.cache/go-build

0 commit comments

Comments
 (0)