Skip to content

Commit c724084

Browse files
⬆️ Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 629129c commit c724084

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
# Checkout with full history for to allow compare with base branch
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
with:
2929
fetch-depth: 0
3030
- uses: actions/setup-python@v6
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/setup-python@v6
4848
- name: Install tools
4949
run: pip install detect-secrets[gibberish]==1.5.0 && pip list
50-
- uses: actions/checkout@v6
50+
- uses: actions/checkout@v7
5151
with:
5252
fetch-depth: 0
5353
# FIXME; GitLeaks now requires a licence.
@@ -74,7 +74,7 @@ jobs:
7474
name: Build and test
7575
runs-on: ${{ matrix.os }}
7676
steps:
77-
- uses: actions/checkout@v6
77+
- uses: actions/checkout@v7
7878
- name: Set up Go
7979
uses: actions/setup-go@v6
8080
with:

.github/workflows/codeql-analysis.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v6
42+
uses: actions/checkout@v7
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ github.actor == 'dependabot[bot]' }}
1212
steps:
1313
# Checkout with full history for to allow compare with base branch
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
with:
1616
fetch-depth: 0
1717
- uses: actions/setup-python@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Carry out a release
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
# Get the full history as this is required by goreleaser
2121
fetch-depth: 0

.github/workflows/scorecards.yml

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

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@v6 # v3.1.0
35+
uses: actions/checkout@v7 # v3.1.0
3636
with:
3737
persist-credentials: false
3838

0 commit comments

Comments
 (0)