Skip to content

Commit 1190782

Browse files
authored
chore (ci): upgrade github actions to use node 20 (brianc#3149)
Fixes: > Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/setup-node@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. Co-authored-by: alxndrsn <alxndrsn>
1 parent 0ee010e commit 1190782

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
persist-credentials: false
1515
- name: Setup node
16-
uses: actions/setup-node@v3
16+
uses: actions/setup-node@v4
1717
with:
1818
node-version: 18
1919
cache: yarn
@@ -60,11 +60,11 @@ jobs:
6060
psql \
6161
-c "SET password_encryption = 'scram-sha-256'" \
6262
-c "CREATE ROLE scram_test LOGIN PASSWORD 'test4scram'"
63-
- uses: actions/checkout@v3
63+
- uses: actions/checkout@v4
6464
with:
6565
persist-credentials: false
6666
- name: Setup node
67-
uses: actions/setup-node@v3
67+
uses: actions/setup-node@v4
6868
with:
6969
node-version: ${{ matrix.node }}
7070
cache: yarn

0 commit comments

Comments
 (0)