Skip to content

Commit be3ebca

Browse files
chore: Bump the all group across 1 directory with 3 updates (#202)
Bumps the all group with 3 updates in the / directory: [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 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/setup-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 871c1d8 commit be3ebca

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/govulnfix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818

1919
- name: Install Go
2020
id: install-go
21-
uses: actions/setup-go@v6
21+
uses: actions/setup-go@v7
2222
with:
2323
go-version-file: go.mod
2424

@@ -37,7 +37,7 @@ jobs:
3737
3838
# Switch to the latest version of Go to ensure vulnfix can update the version of Go.
3939
- name: Install Latest Go
40-
uses: actions/setup-go@v6
40+
uses: actions/setup-go@v7
4141
with:
4242
go-version: '1'
4343
check-latest: true

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717

1818
- name: Install Go
1919
id: install-go
20-
uses: actions/setup-go@v6
20+
uses: actions/setup-go@v7
2121
with:
2222
go-version-file: 'go.mod'
2323

@@ -40,17 +40,17 @@ jobs:
4040

4141
steps:
4242
- name: Checkout code
43-
uses: actions/checkout@v6
43+
uses: actions/checkout@v7
4444

4545
- name: Install Go
4646
id: install-go
47-
uses: actions/setup-go@v6
47+
uses: actions/setup-go@v7
4848
with:
4949
go-version: ${{ matrix.go-version }}
5050
check-latest: "true"
5151

5252
- name: Cache Go test cache
53-
uses: actions/cache@v5
53+
uses: actions/cache@v6
5454
with:
5555
path: /home/runner/.cache/go-test-cache
5656
key: ${{ runner.os }}-go-testcache-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)