Skip to content

Commit 9ad94c8

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

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@v5
16+
- uses: actions/checkout@v6
1717

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

.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@v5
10+
- uses: actions/checkout@v6
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@v5
18+
uses: actions/checkout@v6
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@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414
- uses: actions/setup-node@v6

.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@v5
15+
- uses: actions/checkout@v6
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@v5
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
@@ -70,7 +70,7 @@ jobs:
7070
echo "IS_RELEASE=true" >> $GITHUB_OUTPUT
7171
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
7272
if: ${{ startsWith(github.head_ref, 'release-') }}
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
with:
7575
fetch-depth: 0
7676
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
@@ -150,7 +150,7 @@ jobs:
150150
echo "IS_RELEASE=true" >> $env:GITHUB_OUTPUT
151151
if: ${{ startsWith(github.head_ref, 'release-') }}
152152
- name: Git checkout
153-
uses: actions/checkout@v5
153+
uses: actions/checkout@v6
154154
with:
155155
fetch-depth: 0
156156
if: ${{ !steps.release-check.outputs.IS_RELEASE }}

0 commit comments

Comments
 (0)