Skip to content

Commit b1631ea

Browse files
Bump actions/checkout from 4.2.2 to 5.0.0 (#506)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent eb6e94b commit b1631ea

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code from GitHub
15-
uses: actions/checkout@v4.2.2
15+
uses: actions/checkout@v5.0.0
1616
with:
1717
fetch-depth: 2
1818
- name: Set up Python 3.13

.github/workflows/primer.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
permissions: write-all
1313
steps:
1414
- name: Check out working version
15-
uses: actions/checkout@v4.2.2
15+
uses: actions/checkout@v5.0.0
1616
with:
1717
fetch-depth: 2
1818
- name: Check out changeable version
19-
uses: actions/checkout@v4.2.2
19+
uses: actions/checkout@v5.0.0
2020
with:
2121
path: program_to_test
2222
fetch-depth: 0

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
id-token: write
1515
steps:
1616
- name: Check out code from GitHub
17-
uses: actions/checkout@v4.2.2
17+
uses: actions/checkout@v5.0.0
1818
- name: Set up Python 3.x
1919
uses: actions/setup-python@v5
2020
with:

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1717
steps:
1818
- name: Check out code from GitHub
19-
uses: actions/checkout@v4.2.2
19+
uses: actions/checkout@v5.0.0
2020
- name: Set up Python ${{ matrix.python-version }}
2121
id: python
2222
uses: actions/setup-python@v5
@@ -42,7 +42,7 @@ jobs:
4242
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
4343
steps:
4444
- name: Check out code from GitHub
45-
uses: actions/checkout@v4.2.2
45+
uses: actions/checkout@v5.0.0
4646
- name: Set temp directory
4747
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV
4848
# Workaround to set correct temp directory on Windows
@@ -69,7 +69,7 @@ jobs:
6969
needs: ["tests-linux", "tests-windows"]
7070
steps:
7171
- name: Check out code from GitHub
72-
uses: actions/checkout@v4.2.2
72+
uses: actions/checkout@v5.0.0
7373
- name: Set up Python 3.11
7474
id: python
7575
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)