Skip to content

Commit 6fc34b1

Browse files
chore(deps): update actions/checkout action to v5
1 parent ff9b915 commit 6fc34b1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
benchmark:
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: Setup Node.js environment
1919
uses: actions/setup-node@v4

.github/workflows/conventional-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
lint-title:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- name: Install Dependencies
1212
run: npm install @commitlint/config-conventional
1313
- uses: JulienKode/[email protected]

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Download fossa cli
2020
run: |-
2121
mkdir -p $HOME/.local/bin

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
prerelease:
99
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414
- uses: actions/setup-node@v4

.github/workflows/typescript-nudge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
Nudge-to-convert-to-TypeScript-if-JavaScript-found:
1313
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
2020
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
2121
if: ${{ startsWith(github.head_ref, 'release-') }}
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
@@ -72,7 +72,7 @@ jobs:
7272
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
7373
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
7474
if: ${{ startsWith(github.head_ref, 'release-') }}
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676
with:
7777
fetch-depth: 0
7878
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
@@ -152,7 +152,7 @@ jobs:
152152
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
153153
if: ${{ startsWith(github.head_ref, 'release-') }}
154154
- name: Git checkout
155-
uses: actions/checkout@v4
155+
uses: actions/checkout@v5
156156
with:
157157
fetch-depth: 0
158158
if: ${{ !steps.release-check.outputs.IS_RELEASE }}

0 commit comments

Comments
 (0)