Skip to content

Commit f382a66

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

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
name: editorconfig
1010
steps:
1111
- name: Checkout the repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Check editorconfig
1414
uses: editorconfig-checker/action-editorconfig-checker@main
1515
package-json:
1616
runs-on: ubuntu-latest
1717
name: package.json
1818
steps:
1919
- name: Checkout the repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install pnpm
2222
uses: pnpm/action-setup@v4
2323
with:

.github/workflows/commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: commitlint
88
steps:
99
- name: Checkout the repository
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with:
1212
fetch-depth: 0
1313
- name: Install pnpm

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
workflow: ${{ steps.check.outputs.workflow }}
1515
steps:
1616
- name: Checkout the repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Context check
1919
id: check
2020
uses: trigensoftware/simple-release-action@latest
@@ -28,7 +28,7 @@ jobs:
2828
if: needs.check.outputs.workflow == 'pull-request'
2929
steps:
3030
- name: Checkout the repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: Create or update pull request
3333
uses: trigensoftware/simple-release-action@latest
3434
with:
@@ -41,7 +41,7 @@ jobs:
4141
if: needs.check.outputs.workflow == 'release'
4242
steps:
4343
- name: Checkout the repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
- name: Install pnpm
4646
uses: pnpm/action-setup@v4
4747
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Node.js ${{ matrix.node-version }} / unit
1616
steps:
1717
- name: Checkout the repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Install pnpm
2020
uses: pnpm/action-setup@v4
2121
with:
@@ -34,7 +34,7 @@ jobs:
3434
name: lint
3535
steps:
3636
- name: Checkout the repository
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
- name: Install pnpm
3939
uses: pnpm/action-setup@v4
4040
with:

0 commit comments

Comments
 (0)