We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0f5230 commit e284e16Copy full SHA for e284e16
.github/workflows/release-automated.yml
@@ -7,20 +7,14 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- name: Checkout repository
10
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
11
with:
12
persist-credentials: false
13
- name: Setup Node
14
uses: actions/setup-node@v2
15
16
- node-version: 14
17
- - name: Cache Node.js modules
18
- uses: actions/cache@v2
19
- with:
20
- path: ~/.npm
21
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
22
- restore-keys: |
23
- ${{ runner.os }}-node-
+ node-version: 18
+ cache: npm
24
- name: Install dependencies
25
run: npm ci
26
- name: Run semantic-release
0 commit comments