Skip to content

Commit a17bbc5

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1087c98 commit a17bbc5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Build & verify python package
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0 # needed for setuptools_scm version determination
2727
- uses: hynek/build-and-inspect-python-package@v2
@@ -77,7 +77,7 @@ jobs:
7777
new_docker_api_client: [true, false]
7878
runs-on: ${{ matrix.platform }}
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181
with:
8282
fetch-depth: 0 # needed for goreleaser version determination
8383
- name: Download pre-built packages
@@ -151,7 +151,7 @@ jobs:
151151
new_docker_api_client: [true, false]
152152
timeout-minutes: 25
153153
steps:
154-
- uses: actions/checkout@v4
154+
- uses: actions/checkout@v5
155155
with:
156156
fetch-depth: 0 # needed for goreleaser version determination
157157
- name: Login to Docker Hub
@@ -192,7 +192,7 @@ jobs:
192192
contents: write
193193
runs-on: ubuntu-latest
194194
steps:
195-
- uses: actions/checkout@v4
195+
- uses: actions/checkout@v5
196196
with:
197197
fetch-depth: 0 # needed for goreleaser version determination
198198
- name: Download pre-built packages

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/setup-python@v6
1414
with:
1515
python-version: '3.13'

.github/workflows/llm-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Compile llms.txt
1717
run: |

.github/workflows/pypi-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Build & verify package
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0 # needed for setuptools_scm version determination
2323
# HACK: for now, disable local versions so we can push to Test PyPI on main

0 commit comments

Comments
 (0)