Skip to content

Commit d8ae8cf

Browse files
committed
Upgrade actions/checkout & actions/setup-node
1 parent a217cc1 commit d8ae8cf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/codeql.yml

+1-1
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

.github/workflows/documentation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
documentation:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.3.4
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 1
1616
- name: Use Node.js
17-
uses: actions/setup-node@v2.3.0
17+
uses: actions/setup-node@v3
1818
- name: Install Packages
1919
run: npm ci
2020
- name: Build tests tools

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
node-version: ['18', '20']
2020
redis-version: ['5', '6.0', '6.2', '7.0', '7.2']
2121
steps:
22-
- uses: actions/checkout@v2.3.4
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 1
2525
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v2.3.0
26+
uses: actions/setup-node@v3
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Update npm

0 commit comments

Comments
 (0)