Skip to content

Commit 8a93d71

Browse files
⬆️ Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7967814 commit 8a93d71

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
# Checkout with full history for to allow compare with base branch
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
- uses: actions/setup-python@v6
@@ -51,7 +51,7 @@ jobs:
5151
# name: Build Documentation
5252
# runs-on: ubuntu-latest
5353
# steps:
54-
# - uses: actions/checkout@v5
54+
# - uses: actions/checkout@v6
5555
# - uses: actions/setup-python@v6
5656
# with:
5757
# python-version: ${{ env.python_version}}
@@ -93,7 +93,7 @@ jobs:
9393
name: Report licences in use (SPDX)
9494
runs-on: ubuntu-latest
9595
steps:
96-
- uses: actions/checkout@v5
96+
- uses: actions/checkout@v6
9797
- uses: actions/setup-python@v6
9898
with:
9999
python-version: ${{ env.python_version}}
@@ -149,7 +149,7 @@ jobs:
149149
python -m pip install --upgrade pip
150150
python -m pip install setuptools detect-secrets[gibberish]==1.5.0
151151
python -m pip list
152-
- uses: actions/checkout@v5
152+
- uses: actions/checkout@v6
153153
with:
154154
fetch-depth: 0
155155
# FIXME gitleaks requires now a licence
@@ -194,7 +194,7 @@ jobs:
194194
name: Build and test
195195
runs-on: ${{ matrix.os }}
196196
steps:
197-
- uses: actions/checkout@v5
197+
- uses: actions/checkout@v6
198198
- name: Set up Python ${{ matrix.python-version }}
199199
uses: actions/setup-python@v6
200200
with:

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

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

.github/workflows/codeql.yml

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

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- 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@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- uses: actions/setup-python@v6

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- name: 'Dependency Review'
2020
uses: actions/dependency-review-action@v4

.github/workflows/mypy.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@v5
14+
- uses: actions/checkout@v6
1515
- name: Setup Python
1616
uses: actions/setup-python@v6
1717
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Carry out a release
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ env.python_version }}

.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@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v3.1.0
35+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v3.1.0
3636
with:
3737
persist-credentials: false
3838

0 commit comments

Comments
 (0)