Skip to content

Commit 60b61e7

Browse files
committed
Fix permissions in CI build
1 parent 182cd4a commit 60b61e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ jobs:
44
build:
55
name: Build & test
66
runs-on: ubuntu-latest
7-
container: httptoolkit/act-build-base
7+
container: httptoolkit/act-build-base:v3.0.0
88
steps:
99
- uses: actions/checkout@v2
1010

1111
- uses: actions/setup-node@v1
1212
with:
1313
node-version: 14
1414

15-
- run: npm ci --unsafe-perm # Unsafe required for napa in CI
15+
- run: npm ci
1616
- run: npm test # Test the code itself
1717
- run: npm run build # Confirm that the API specs & index builds successfully

.github/workflows/daily-main-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
name: Build & test
88
runs-on: ubuntu-latest
9-
container: httptoolkit/act-build-base
9+
container: httptoolkit/act-build-base:v3.0.0
1010
steps:
1111
- uses: actions/checkout@v2
1212

0 commit comments

Comments
 (0)