Skip to content

Commit 876a534

Browse files
committed
fix(ci): update workflow actions
1 parent 30da748 commit 876a534

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
@@ -48,11 +48,11 @@ jobs:
4848
# If you wish to specify custom queries, you can do so here or in a config file.
4949
# By default, queries listed here will override any specified in a config file.
5050
# Prefix the list here with "+" to use these queries and those in the config file.
51-
51+
5252
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
5353
# queries: security-extended,security-and-quality
5454

55-
55+
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
@@ -61,7 +61,7 @@ jobs:
6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6363

64-
# If the Autobuild fails above, remove it and uncomment the following three lines.
64+
# If the Autobuild fails above, remove it and uncomment the following three lines.
6565
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
6666

6767
# - run: |

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- name: Use Node.js 18
11+
- uses: actions/checkout@v4
12+
- name: Use Node.js 20
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 20
1616

1717
- name: npm install, lint, build, and test
1818
run: |

.github/workflows/npmpublish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version: 20
1616
- run: |
1717
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
1818
yarn install --immutable
@@ -26,10 +26,10 @@ jobs:
2626
needs: build
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v1
29+
- uses: actions/checkout@v4
3030
- uses: actions/setup-node@v3
3131
with:
32-
node-version: 18
32+
node-version: 20
3333
registry-url: https://registry.npmjs.org/
3434
- run: yarn install --immutable
3535
- run: yarn build

0 commit comments

Comments
 (0)