Skip to content

Commit 798c057

Browse files
authored
Update CI Actions versions from 3 -> 4 (#854)
1 parent e449dd9 commit 798c057

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@v2
3030
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-22.04
1010
steps:
1111
- name: Code checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: Install NodeJS
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: 18.x
1717
- name: Install dependencies

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
publish:
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
ref: main
1414

15-
- uses: actions/setup-node@v3
15+
- uses: actions/setup-node@v4
1616
with:
1717
node-version: 18
1818
registry-url: "https://registry.npmjs.org"

.github/workflows/test-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ jobs:
128128
echo "NODE_OPTIONS=--dns-result-order=ipv4first" >> $GITHUB_ENV
129129
130130
- name: Code checkout
131-
uses: actions/checkout@v3
131+
uses: actions/checkout@v4
132132

133133
- name: Install NodeJS ${{ inputs.node-version }}
134-
uses: actions/setup-node@v3
134+
uses: actions/setup-node@v4
135135
with:
136136
node-version: ${{ inputs.node-version }}
137137

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
node-version: [ 18.x, 20.x ]
2929
steps:
3030
- name: Code checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
- name: Install NodeJS ${{ matrix.node-version }}
33-
uses: actions/setup-node@v3
33+
uses: actions/setup-node@v4
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
- name: Install dependencies

.github/workflows/windows-test-command-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Dispatch windows-test command
13-
uses: peter-evans/slash-command-dispatch@v3
13+
uses: peter-evans/slash-command-dispatch@v4
1414
with:
1515
token: ${{ secrets.REPO_TOKEN }}
1616
commands: windows-test

.github/workflows/windows-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
})
2626
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
3232
ref: ${{ github.event.client_payload.pull_request.head.ref }}
3333

3434
- name: Install NodeJS 18.x
35-
uses: actions/setup-node@v3
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: 18.x
3838

0 commit comments

Comments
 (0)