Skip to content

Commit 0ac30d6

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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] <[email protected]>
1 parent a77e7fb commit 0ac30d6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Lint
1414
uses: ./.github/actions/lint
1515

@@ -80,7 +80,7 @@ jobs:
8080
database_ssl_mode: null
8181

8282
steps:
83-
- uses: actions/checkout@v4
83+
- uses: actions/checkout@v6
8484
- name: Test with ${{ matrix.name }} database
8585
uses: ./.github/actions/test
8686
with:
@@ -98,7 +98,7 @@ jobs:
9898
if: startsWith(github.ref, 'refs/tags/')
9999

100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v6
102102
- name: Set up Python 3.12
103103
uses: actions/setup-python@v5
104104
with:
@@ -144,7 +144,7 @@ jobs:
144144
needs: [pypi-release]
145145

146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v6
148148
- name: Wait package to be truly available from PyPI
149149
shell: bash
150150
run: |

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# Learn more about CodeQL language support at https://git.io/codeql-language-support
3838

3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL

.github/workflows/docker.yml

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

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Build Docker image
2020
uses: ./.github/actions/docker-build
2121
with:

.github/workflows/sentry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Set raw version variable
1414
shell: bash
1515
run: |

0 commit comments

Comments
 (0)