Skip to content

Commit 75cd945

Browse files
authored
Merge pull request #191 from Codex-/renovate/actions-checkout-4.x
chore(deps): update actions/checkout action to v4
2 parents acac21d + f5fce15 commit 75cd945

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
test:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Set target branch
1212
run: echo "TARGET_BRANCH=${{ github.ref }}" >> $GITHUB_ENV
1313
- name: Set target branch for PR event

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v2
2626
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
GITHUB_TOKEN: ${{ secrets.ACTION_GITHUB_TOKEN }}
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0 # Need history for changelog generation
2525
- name: Set Node.js lts

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- run: npm ci
1212
- name: build
1313
run: npm run build:types
@@ -28,7 +28,7 @@ jobs:
2828
CI: true
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Use Node.js lts
3333
uses: actions/setup-node@v3
3434
with:

0 commit comments

Comments
 (0)