Skip to content

Commit 453d103

Browse files
authored
Update deps (#385)
1 parent b555fb4 commit 453d103

File tree

8 files changed

+335
-238
lines changed

8 files changed

+335
-238
lines changed

.github/workflows/cleanup.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ permissions:
99
contents: 'read'
1010
id-token: 'write'
1111

12+
defaults:
13+
run:
14+
shell: 'bash'
15+
1216
jobs:
1317
cleanup:
1418
runs-on: 'ubuntu-latest'

.github/workflows/draft-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
jobs:
1717
draft-release:
1818
uses: 'google-github-actions/.github/.github/workflows/draft-release.yml@v3' # ratchet:exclude
19+
permissions:
20+
contents: 'read'
21+
pull-requests: 'write'
1922
with:
2023
version_strategy: '${{ github.event.inputs.version_strategy }}'
2124
secrets:

.github/workflows/integration.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,25 @@ concurrency:
1515
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
1616
cancel-in-progress: true
1717

18+
permissions:
19+
contents: 'read'
20+
statuses: 'write'
21+
id-token: 'write'
22+
23+
defaults:
24+
run:
25+
shell: 'bash'
26+
1827
jobs:
1928
integration:
2029
if: |-
2130
${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
22-
permissions:
23-
contents: 'read'
24-
id-token: 'write'
2531
runs-on: 'ubuntu-latest'
2632

2733
steps:
2834
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4
2935

30-
- uses: 'actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a' # ratchet:actions/setup-node@v4
36+
- uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' # ratchet:actions/setup-node@v4
3137
with:
3238
node-version-file: 'package.json'
3339

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ on:
99
jobs:
1010
release:
1111
uses: 'google-github-actions/.github/.github/workflows/release.yml@v3' # ratchet:exclude
12+
permissions:
13+
attestations: 'write'
14+
contents: 'write'
15+
packages: 'write'
1216
secrets:
1317
ACTIONS_BOT_TOKEN: '${{ secrets.ACTIONS_BOT_TOKEN }}'

.github/workflows/unit.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ concurrency:
1515
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
1616
cancel-in-progress: true
1717

18+
permissions:
19+
contents: 'read'
20+
statuses: 'write'
21+
22+
defaults:
23+
run:
24+
shell: 'bash'
25+
1826
jobs:
1927
unit:
2028
strategy:
@@ -29,7 +37,7 @@ jobs:
2937
steps:
3038
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4
3139

32-
- uses: 'actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a' # ratchet:actions/setup-node@v4
40+
- uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' # ratchet:actions/setup-node@v4
3341
with:
3442
node-version-file: 'package.json'
3543

0 commit comments

Comments
 (0)