Skip to content

Commit 62a2b08

Browse files
Dependabot Github Actions: 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) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [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 f1fd438 commit 62a2b08

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ["3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222

2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v5
@@ -48,7 +48,7 @@ jobs:
4848
lint:
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252

5353
- name: Set up Python
5454
uses: actions/setup-python@v5

.github/workflows/unit_build_and_push.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
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Set tag output
2121
id: vars
2222
# Create the output from the tag and strip "v" from tag

.github/workflows/unit_python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# comments (to avoid publishing multiple comments in the same PR)
1515
contents: write
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Install dependencies
1919
run: |
2020
python3 -m pip install --upgrade pip

.github/workflows/unit_ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ruff:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- uses: chartboost/ruff-action@v1
1111
with:
1212
args: --ignore E501

0 commit comments

Comments
 (0)