Skip to content

Commit 84d7a35

Browse files
dependabot[bot]bjoernricks
authored andcommitted
Deps: bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) 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/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: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7c6d5af commit 84d7a35

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: 'ubuntu-latest'
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@v7
1313
with:
1414
fetch-depth: 0 # for conventional commits and getting all git tags
1515
persist-credentials: false

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515

1616
- name: Set up Go
1717
uses: actions/setup-go@v6

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222

2323
- name: Set up Go
2424
uses: actions/setup-go@v6
2525
with:
2626
go-version-file: go.mod
2727

2828
- name: Cache Go modules
29-
uses: actions/cache@v5
29+
uses: actions/cache@v6
3030
with:
3131
path: |
3232
~/go/pkg/mod
@@ -39,7 +39,7 @@ jobs:
3939
uses: docker/setup-buildx-action@v4
4040

4141
- name: Cache Docker layers
42-
uses: actions/cache@v5
42+
uses: actions/cache@v6
4343
with:
4444
path: /tmp/.buildx-cache
4545
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424

2525
- name: Set up Go
2626
uses: actions/setup-go@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
release-type-input: ${{ inputs.release-type }}
4242
- name: Checkout code
43-
uses: actions/checkout@v6
43+
uses: actions/checkout@v7
4444
with:
4545
fetch-depth: 0 # for conventional commits and getting all git tags
4646
persist-credentials: false

0 commit comments

Comments
 (0)