Skip to content

Commit 349321f

Browse files
⬆️ Bump actions/checkout from 5 to 6 in the all group (#142)
1 parent fa9487f commit 349321f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
contents: 'write'
2121
id-token: 'write'
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Install uv
2525
uses: astral-sh/setup-uv@v7
2626
with:
@@ -64,7 +64,7 @@ jobs:
6464
ENCRYPTED_SECRET=${{ needs.create-release-branch.outputs.encrypted-version }};
6565
VERSION=$(echo -n "$ENCRYPTED_SECRET" | base64 --decode | openssl enc -d -a -k "password");
6666
echo "version=$VERSION" >> $GITHUB_OUTPUT
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
with:
6969
ref: main
7070
- name: Reset release branch
@@ -105,7 +105,7 @@ jobs:
105105
ENCRYPTED_SECRET=${{ needs.create-release-branch.outputs.encrypted-version }};
106106
VERSION=$(echo -n "$ENCRYPTED_SECRET" | base64 --decode | openssl enc -d -a -k "password");
107107
echo "version=$VERSION" >> $GITHUB_OUTPUT
108-
- uses: actions/checkout@v5
108+
- uses: actions/checkout@v6
109109
with:
110110
fetch-depth: 0
111111
- name: Delete release branch

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Install uv
1818
uses: astral-sh/setup-uv@v7
1919
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Install uv
1414
uses: astral-sh/setup-uv@v7
1515
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: 'write'
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Get release tag
1818
id: get-tag
1919
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
runs-on: ${{ matrix.os }}
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v7
2525
with:
@@ -45,7 +45,7 @@ jobs:
4545
env:
4646
DEEPL_API_KEY: ${{ secrets.DEEPL_API_KEY }}
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
- name: Install uv
5050
uses: astral-sh/setup-uv@v7
5151
with:

0 commit comments

Comments
 (0)