Skip to content

Commit 94241b8

Browse files
chore(deps): update actions/checkout action to v5 (#8)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c62248b commit 94241b8

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/mega-linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
app-id: ${{ secrets.GH_APP_ID }}
5555
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
ref: ${{ github.head_ref || github.ref }}
6060
token: ${{ steps.auth.outputs.token }}

template/.github/workflows/bench.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
bench: ${{ steps.bench.outcome == 'success' }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- id: bench
2424
name: Detect Benches
2525
run: |-
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
- name: Setup Python
4040
uses: liblaf/actions/setup-python@main
4141
- name: Install Mise

template/.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Build and Inspect a Python Package
2222
uses: hynek/build-and-inspect-python-package@v2

template/.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Auth App
2525
uses: liblaf/actions/auth-app@main
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
token: ${{ steps.auth.outputs.token }}
3030
fetch-depth: 0

template/.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
artifact-name: ${{ steps.build.outputs.artifact-name }}
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- id: build
2222
name: Build and Inspect a Python Package
2323
uses: hynek/build-and-inspect-python-package@v2
@@ -55,7 +55,7 @@ jobs:
5555
cancel-in-progress: true
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959
with:
6060
fetch-depth: 0
6161
- name: Download Artifacts

template/.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
test: ${{ steps.test.outcome == 'success' }}
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- id: test
2626
name: Detect Tests
2727
run: |-
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0 # I don't know why, but it is present in the official example
4545
- name: Setup Python

0 commit comments

Comments
 (0)