Skip to content

Commit 291b9da

Browse files
authored
Merge pull request #165 from LilSpazJoekp/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents df7ed6a + 3aed438 commit 291b9da

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Lint ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-python@v6
1717
with:
1818
cache: pip
@@ -38,7 +38,7 @@ jobs:
3838
name: Test ${{ matrix.os }}
3939
runs-on: ${{ matrix.os }}
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- name: Set up Python
4343
uses: actions/setup-python@v6
4444
with:
@@ -58,7 +58,7 @@ jobs:
5858
name: Test Python ${{ matrix.python-version }}
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262
- name: Set up Python
6363
uses: actions/setup-python@v6
6464
with:

.github/workflows/pre-commit_autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ jobs:
22
pre-commit_autoupdate:
33
runs-on: ubuntu-latest
44
steps:
5-
- uses: actions/checkout@v5
5+
- uses: actions/checkout@v6
66
with:
77
ssh-key: ${{ secrets.SSH_DEPLOY_KEY }}
88
- uses: actions/setup-python@v6

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
name: Prepare Release v${{ github.event.inputs.version }}
44
runs-on: ubuntu-latest
55
steps:
6-
- uses: actions/checkout@v5
6+
- uses: actions/checkout@v6
77
with:
88
ssh-key: ${{ secrets.SSH_DEPLOY_KEY }}
99
- uses: actions/setup-python@v6

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
id-token: write
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- name: Set up Python
1111
uses: actions/setup-python@v6
1212
with:

.github/workflows/tag_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
name: Tag Release
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
with:
99
fetch-depth: 3
1010
ssh-key: ${{ secrets.SSH_DEPLOY_KEY }}

0 commit comments

Comments
 (0)