Skip to content

Commit b415ca2

Browse files
authored
Merge pull request #211 from qlik-oss/bump-gha
chore: Upgrade GHA
2 parents a0f6c7b + ebe99f7 commit b415ca2

2 files changed

Lines changed: 6 additions & 49 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/promotion.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,11 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v4
1414

15-
- name: Cache node modules
16-
uses: actions/cache@v4
17-
with:
18-
path: node_modules
19-
key: npm-cache-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20-
restore-keys: |
21-
npm-cache-${{ runner.os }}-node-
22-
2315
- name: Setup Node.js
2416
uses: actions/setup-node@v4
2517
with:
26-
node-version: '18'
18+
node-version-file: '.nvmrc'
19+
cache: 'npm'
2720

2821
- name: Install dependencies
2922
run: npm ci
@@ -46,13 +39,15 @@ jobs:
4639
run: npm run test-coverage
4740

4841
- name: Upload coverage artifact
49-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
5043
with:
5144
name: coverage-report
5245
path: coverage
46+
if-no-files-found: warn
5347

5448
- name: Upload reports
55-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5650
with:
5751
name: reports
5852
path: reports
53+
if-no-files-found: warn

0 commit comments

Comments
 (0)