Skip to content

Commit 023675d

Browse files
authored
Merge branch 'master' into fix/this-end-is-not-a-function-error
2 parents 21d100f + 4b12bae commit 023675d

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- master
88
workflow_dispatch:
99

10+
permissions:
11+
contents: read
12+
1013
# Cancel old builds on new commit for same workflow + branch/PR
1114
concurrency:
1215
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -57,6 +60,9 @@ jobs:
5760
docker:
5861
name: Build with docker
5962
runs-on: ubuntu-22.04
63+
permissions:
64+
contents: read
65+
packages: write
6066
steps:
6167
- uses: actions/checkout@v4
6268
name: Checkout Repo

.github/workflows/docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- master
77
workflow_dispatch:
88

9+
permissions:
10+
contents: write
11+
pages: write
912

1013
# Cancel old builds on new commit for same workflow + branch/PR
1114
concurrency:

.github/workflows/mirror.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
required: true
99
type: string
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
mirror:
1316
runs-on: ubuntu-latest

.github/workflows/publish-deps.yml

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: Publish Dependencies
33
on:
44
workflow_dispatch:
55

6+
permissions:
7+
contents: read
8+
packages: write
9+
id-token: write
10+
611
jobs:
712
publish:
813
# Must match glibc verison in node:20

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- master
77
workflow_dispatch:
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
semantic-release:
1114
name: Release

0 commit comments

Comments
 (0)