Skip to content

Commit bcce91e

Browse files
committed
Update deps
1 parent 1c9e7bb commit bcce91e

File tree

18 files changed

+1078
-973
lines changed

18 files changed

+1078
-973
lines changed

.github/workflows/compile-versions.yml

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

12+
permissions:
13+
contents: 'read'
14+
pull-requests: 'write'
15+
16+
defaults:
17+
run:
18+
shell: 'bash'
19+
1220
jobs:
1321
compile-versions:
1422
runs-on: 'ubuntu-latest'
@@ -18,7 +26,7 @@ jobs:
1826
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4
1927

2028
- name: 'Setup Go'
21-
uses: 'actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34' # ratchet:actions/setup-go@v5
29+
uses: 'actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5' # ratchet:actions/setup-go@v5
2230
with:
2331
go-version-file: 'go.mod'
2432

.github/workflows/draft-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ on:
1515

1616
jobs:
1717
draft-release:
18-
# TODO(sethvargo): revert to a tag when ready
1918
uses: 'google-github-actions/.github/.github/workflows/draft-release.yml@v3' # ratchet:exclude
19+
permissions:
20+
contents: 'read'
21+
pull-requests: 'write'
2022
with:
2123
version_strategy: '${{ github.event.inputs.version_strategy }}'
2224
secrets:

.github/workflows/release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@ on:
66
- 'main'
77
- 'release/**/*'
88

9+
defaults:
10+
run:
11+
shell: 'bash'
12+
913
jobs:
1014
release:
11-
# TODO(sethvargo): revert to a tag when ready
1215
uses: 'google-github-actions/.github/.github/workflows/release.yml@v3' # ratchet:exclude
16+
permissions:
17+
attestations: 'write'
18+
contents: 'write'
19+
packages: 'write'
1320
secrets:
1421
ACTIONS_BOT_TOKEN: '${{ secrets.ACTIONS_BOT_TOKEN }}'
1522

@@ -23,7 +30,7 @@ jobs:
2330
steps:
2431
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4
2532

26-
- uses: 'actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a' # ratchet:actions/setup-node@v4
33+
- uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' # ratchet:actions/setup-node@v4
2734
with:
2835
node-version-file: 'package.json'
2936
registry-url: 'https://wombat-dressing-room.appspot.com/'

.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)