Skip to content

Commit f940d73

Browse files
Bump actions/checkout from 3 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...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 38f18fc commit f940d73

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v6
1414
- uses: actions/setup-python@v5
1515
with:
1616
python-version: 3.x

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: [3.8]
1818
steps:
1919
- name: 🛎️ Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.head_ref }}
2323
- name: 🐍 Set up Python ${{ matrix.python-version }}

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
python-version: ["3.8", "3.9", "3.10"]
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v6
1313
- name: Set up Python ${{ matrix.python-version }}
1414
uses: actions/setup-python@v5
1515
with:

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v6
1818
- name: Set up Python
1919
uses: actions/setup-python@v5
2020
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- "extended"
2525
name: Python ${{ matrix.python-version }} ${{ matrix.test_type }}
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v6
2828
- name: Set up Python ${{ matrix.python-version }}
2929
uses: "./.github/actions/poetry_setup"
3030
with:

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v6
1717

1818
- name: Setup Python
1919
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)