Skip to content

Commit 120ddca

Browse files
chore(deps): update actions/checkout action to v6
1 parent 4db504d commit 120ddca

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/bump_libraries.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
contents: write
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Read Python version from .python-version
2121
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
2222
- name: Install uv

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: opensource-linux-8core
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Read Python version from .python-version
1818
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
1919
- name: Install uv
@@ -31,15 +31,15 @@ jobs:
3131
shellcheck:
3232
runs-on: opensource-linux-8core
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: ShellCheck
3636
uses: ludeeus/action-shellcheck@master
3737

3838
test:
3939
runs-on: opensource-linux-8core
4040
needs: lint
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
- name: Read Python version from .python-version
4444
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
4545
- name: Install uv
@@ -64,7 +64,7 @@ jobs:
6464
changelog:
6565
runs-on: opensource-linux-8core
6666
steps:
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
- if: github.ref != 'refs/heads/main'
6969
uses: dorny/paths-filter@v3
7070
id: changes
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: opensource-linux-8core
8383
needs: lint
8484
steps:
85-
- uses: actions/checkout@v5
85+
- uses: actions/checkout@v6
8686
- name: Read Python version from .python-version
8787
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
8888
- name: Install uv

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 1
3131

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
driver: docker
3838
- name: Checkout code
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
- name: Read Python version from .python-version
4141
run: echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
4242
- name: Login to Quay.io
@@ -99,7 +99,7 @@ jobs:
9999
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}
100100
steps:
101101
- name: Checkout code
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
- name: Set SHORT_SHA
104104
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
105105
- name: Login to Quay.io

0 commit comments

Comments
 (0)