Skip to content

Commit 008a0b5

Browse files
update github actions version (#32)
1 parent 69db474 commit 008a0b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ name: Continuous Integration
33
on:
44
pull_request:
55
push:
6-
branches: main
6+
branches: [main]
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [12.x]
13+
node-version: [18.x]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

2323
- name: Get Yarn cache directory
2424
id: yarn-cache-dir-path
25-
run: echo "::set-output name=dir::$(yarn cache dir)"
25+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
2626

2727
- name: Use Yarn cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
id: yarn-cache
3030
with:
3131
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

0 commit comments

Comments
 (0)