Skip to content

Commit 3f8af41

Browse files
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 7746eba commit 3f8af41

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959

6060
# Initializes the CodeQL tools for scanning.
6161
- name: Initialize CodeQL

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: "ubuntu-latest"
1010
steps:
1111
- name: Checkout anaStruct Repository
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313

1414
- name: Setup Python
1515
uses: actions/setup-python@v6
@@ -54,7 +54,7 @@ jobs:
5454
platforms: arm64
5555

5656
- name: Checkout anaStruct Repository
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858

5959
- name: Build wheels
6060
uses: pypa/cibuildwheel@v3.2.1
@@ -77,7 +77,7 @@ jobs:
7777
matrix:
7878
python-version: ["3.12"]
7979
steps:
80-
- uses: actions/checkout@v5
80+
- uses: actions/checkout@v6
8181
- name: Install poetry
8282
run: pipx install poetry
8383
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
matrix:
1111
python-version: ["3.12"]
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Install poetry
1515
run: pipx install poetry
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -43,7 +43,7 @@ jobs:
4343
python-version: ["3.10", "3.11", "3.13"]
4444

4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
- name: Install poetry
4848
run: pipx install poetry
4949
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)