Skip to content

Commit 2dce78e

Browse files
Bump actions/checkout from 5.0.0 to 6.0.0 (#530)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.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 04bae8f commit 2dce78e

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@v5.0.0
15+
uses: actions/checkout@v6.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@v5.0.0
15+
uses: actions/checkout@v6.0.0
1616
with:
1717
fetch-depth: 2
1818
- name: Check out changeable version
19-
uses: actions/checkout@v5.0.0
19+
uses: actions/checkout@v6.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@v5.0.0
17+
uses: actions/checkout@v6.0.0
1818
- name: Set up Python 3.x
1919
uses: actions/setup-python@v6
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@v5.0.0
19+
uses: actions/checkout@v6.0.0
2020
- name: Set up Python ${{ matrix.python-version }}
2121
id: python
2222
uses: actions/setup-python@v6
@@ -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@v5.0.0
45+
uses: actions/checkout@v6.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@v5.0.0
72+
uses: actions/checkout@v6.0.0
7373
- name: Set up Python 3.11
7474
id: python
7575
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)