Skip to content

Commit d74021b

Browse files
authored
ci: fixup workflows (#130)
1 parent 3ac4fd2 commit d74021b

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
19+
with:
20+
persist-credentials: false
1921
- name: Setup Node.js
2022
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
2123
with:

.github/workflows/needs-manual-audit.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ on:
55
schedule:
66
- cron: '0 18 * * 1'
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
audit:
1013
name: Perform Manual Backport Audit
1114
runs-on: ubuntu-latest
1215
steps:
1316
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
17+
with:
18+
persist-credentials: false
1419
- name: Setup Node.js
1520
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
1621
with:

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
19+
with:
20+
persist-credentials: false
1921
- name: Setup Node.js
2022
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
2123
with:

.github/workflows/unreleased-audit.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ on:
55
schedule:
66
- cron: '0 16 * * 1'
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
audit:
1013
name: Perform Unreleased Audit
1114
runs-on: ubuntu-latest
1215
steps:
1316
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
17+
with:
18+
persist-credentials: false
1419
- name: Setup Node.js
1520
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
1621
with:
@@ -22,4 +27,4 @@ jobs:
2227
env:
2328
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2429
UNRELEASED_GITHUB_APP_CREDS: ${{ secrets.UNRELEASED_GITHUB_APP_CREDS }}
25-
ACTION_TYPE: 'unreleased'
30+
ACTION_TYPE: 'unreleased'

0 commit comments

Comments
 (0)