Skip to content

Commit 32d7952

Browse files
⬆️ Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 82562dc commit 32d7952

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.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@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
- uses: actions/setup-python@v5
@@ -51,7 +51,7 @@ jobs:
5151
# name: Build Documentation
5252
# runs-on: ubuntu-latest
5353
# steps:
54-
# - uses: actions/checkout@v4
54+
# - uses: actions/checkout@v5
5555
# - uses: actions/setup-python@v5
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@v4
96+
- uses: actions/checkout@v5
9797
- uses: actions/setup-python@v5
9898
with:
9999
python-version: ${{ env.python_version}}
@@ -148,7 +148,7 @@ jobs:
148148
python -m pip install --upgrade pip
149149
python -m pip install detect-secrets==1.0.3
150150
python -m pip list
151-
- uses: actions/checkout@v4
151+
- uses: actions/checkout@v5
152152
with:
153153
fetch-depth: 0
154154
# FIXME gitleaks requires now a licence
@@ -193,7 +193,7 @@ jobs:
193193
name: Build and test
194194
runs-on: ${{ matrix.os }}
195195
steps:
196-
- uses: actions/checkout@v4
196+
- uses: actions/checkout@v5
197197
- name: Set up Python ${{ matrix.python-version }}
198198
uses: actions/setup-python@v5
199199
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@v4
41+
uses: actions/checkout@v5
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@v4
40+
uses: actions/checkout@v5
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@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- uses: actions/setup-python@v5

.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@v4
18+
uses: actions/checkout@v5
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@v4
14+
- uses: actions/checkout@v5
1515
- name: Setup Python
1616
uses: actions/setup-python@v5
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@v4
19+
- uses: actions/checkout@v5
2020
- uses: actions/setup-python@v5
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@cbb722410c2e876e24abbe8de2cc27693e501dcb # v3.1.0
35+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3.1.0
3636
with:
3737
persist-credentials: false
3838

0 commit comments

Comments
 (0)