Skip to content

Commit 7f57860

Browse files
authored
Merge pull request #365 from adamspd/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 8b2ef73 + 5380a71 commit 7f57860

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

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

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/compatibility_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: ${{ github.event.inputs.branch }}
2222

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
publish_to_testpypi: ${{ steps.version_check.outputs.publish_to_testpypi }}
1717
version: ${{ steps.version_check.outputs.version }}
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- name: Set up Python
2222
uses: actions/setup-python@v5
@@ -41,7 +41,7 @@ jobs:
4141
if: needs.prepare-and-check.outputs.publish_to_pypi == 'true' || needs.prepare-and-check.outputs.publish_to_testpypi == 'true'
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

4646
- name: Set up Python
4747
uses: actions/setup-python@v5
@@ -86,7 +86,7 @@ jobs:
8686
contents: write
8787

8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v5
9090

9191
- name: Download distribution packages for release
9292
uses: actions/download-artifact@v4

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: [false]
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Set up Python ${{ matrix.python-version }}
3030
uses: actions/setup-python@v5
3131
with:

0 commit comments

Comments
 (0)