Skip to content

Commit bfd7d31

Browse files
chore(deps): update actions/checkout action to v6 (#24)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4646435 commit bfd7d31

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/mega-linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
app-id: ${{ vars.APP_ID }}
4141
private-key: ${{ secrets.PRIVATE_KEY }}
4242
- name: Checkout
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
- id: lint
4545
name: MegaLinter
4646
uses: liblaf/actions/mega-linter@v1

.github/workflows/release-please.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
app-id: ${{ vars.APP_ID }}
3838
private-key: ${{ secrets.PRIVATE_KEY }}
3939
- name: Checkout
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
token: ${{ steps.auth.outputs.token }}
4343
- id: release-please
@@ -67,7 +67,7 @@ jobs:
6767
app-id: ${{ vars.APP_ID }}
6868
private-key: ${{ secrets.PRIVATE_KEY }}
6969
- name: Checkout
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
with:
7272
ref: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
7373
token: ${{ steps.auth.outputs.token }}
@@ -123,7 +123,7 @@ jobs:
123123
app-id: ${{ vars.APP_ID }}
124124
private-key: ${{ secrets.PRIVATE_KEY }}
125125
- name: Checkout
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v6
127127
with:
128128
ref: ${{ needs.release-please.outputs.tag }}
129129
token: ${{ steps.auth.outputs.token }}

template/.github/workflows/bench.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
python-versions: ${{ steps.inspect.outputs.supported_python_classifiers_json_array }}
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
- id: inspect
3434
name: Build and Inspect a Python Package
3535
uses: hynek/build-and-inspect-python-package@v2
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5757
- name: Setup Python
5858
uses: liblaf/actions/setup-python@v1
5959
- name: Install Mise

template/.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525
- id: config

template/.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
package-version: ${{ steps.build.outputs.package_version }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- id: build
2727
name: Build and Inspect a Python Package
2828
uses: hynek/build-and-inspect-python-package@v2

template/.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python-versions: ${{ steps.inspect.outputs.supported_python_classifiers_json_array }}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
- id: inspect
3636
name: Build and Inspect a Python Package
3737
uses: hynek/build-and-inspect-python-package@v2
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- name: Checkout
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 0 # I don't know why, but it is present in the official example
6262
- name: Setup Python

0 commit comments

Comments
 (0)