File tree 9 files changed +533
-516
lines changed
9 files changed +533
-516
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ jobs:
14
14
runs-on : ' ubuntu-latest'
15
15
16
16
steps :
17
- - uses : ' actions/checkout@v4 '
17
+ - uses : ' actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 ' # ratchet:actions/checkout@v4
18
18
19
- - uses : ' google-github-actions/auth@v2'
19
+ - uses : ' google-github-actions/auth@v2' # ratchet:exclude
20
20
with :
21
21
workload_identity_provider : ' ${{ vars.WIF_PROVIDER_NAME }}'
22
22
service_account : ' ${{ vars.SERVICE_ACCOUNT_EMAIL }}'
23
23
24
- - uses : ' google-github-actions/setup-gcloud@v2'
24
+ - uses : ' google-github-actions/setup-gcloud@v2' # ratchet:exclude
25
25
26
26
- name : Delete services
27
27
run : |-
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
draft-release :
18
- name : ' Draft release'
19
- uses : ' google-github-actions/.github/.github/workflows/draft-release.yml@v0'
18
+ uses : ' google-github-actions/.github/.github/workflows/draft-release.yml@v3' # ratchet:exclude
20
19
with :
21
20
version_strategy : ' ${{ github.event.inputs.version_strategy }}'
22
- # secrets must be explicitly passed to reusable workflows https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow
23
21
secrets :
24
22
ACTIONS_BOT_TOKEN : ' ${{ secrets.ACTIONS_BOT_TOKEN }}'
Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
23
23
id-token : ' write'
24
24
runs-on : ' ubuntu-latest'
25
25
steps :
26
- - uses : ' actions/checkout@v4 '
26
+ - uses : ' actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 ' # ratchet:actions/checkout@v4
27
27
28
- - uses : ' actions/setup-node@v4 '
28
+ - uses : ' actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a ' # ratchet:actions/setup-node@v4
29
29
with :
30
30
node-version : ' 20.x'
31
31
32
32
- name : ' npm build'
33
33
run : ' npm ci && npm run build'
34
34
35
- - uses : ' google-github-actions/auth@v2'
35
+ - uses : ' google-github-actions/auth@v2' # ratchet:exclude
36
36
with :
37
37
project_id : ' ${{ vars.PROJECT_ID }}'
38
38
workload_identity_provider : ' ${{ vars.WIF_PROVIDER_NAME }}'
@@ -53,16 +53,16 @@ jobs:
53
53
id-token : ' write'
54
54
runs-on : ' ubuntu-latest'
55
55
steps :
56
- - uses : ' actions/checkout@v4 '
56
+ - uses : ' actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 ' # ratchet:actions/checkout@v4
57
57
58
- - uses : ' actions/setup-node@v4 '
58
+ - uses : ' actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a ' # ratchet:actions/setup-node@v4
59
59
with :
60
60
node-version : ' 20.x'
61
61
62
62
- name : ' npm build'
63
63
run : ' npm ci && npm run build'
64
64
65
- - uses : ' google-github-actions/auth@v2'
65
+ - uses : ' google-github-actions/auth@v2' # ratchet:exclude
66
66
with :
67
67
project_id : ' ${{ vars.PROJECT_ID }}'
68
68
workload_identity_provider : ' ${{ vars.WIF_PROVIDER_NAME }}'
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
17
17
steps :
18
18
- name : ' Checkout'
19
- uses : ' actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 ' # ratchet:actions/checkout@v4
19
+ uses : ' actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 ' # ratchet:actions/checkout@v4
20
20
21
21
- name : ' Publish'
22
22
id : ' publish'
23
- uses :
' actions/publish-immutable-action@4b1aa5c1cde5fedc80d52746c9546cb5560e5f53 ' # ratchet:actions/[email protected] .3
23
+ uses :
' actions/publish-immutable-action@4bc8754ffc40f27910afb20287dbbbb675a4e978 ' # ratchet:actions/[email protected] .4
24
24
with :
25
25
github-token : ' ${{ secrets.GITHUB_TOKEN }}'
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
release :
11
- if : |-
12
- startsWith(github.event.head_commit.message, 'Release: v')
13
- name : ' Release'
14
- uses : ' google-github-actions/.github/.github/workflows/release.yml@v1' # ratchet:exclude
15
- # secrets must be explicitly passed to reusable workflows https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow
11
+ uses : ' google-github-actions/.github/.github/workflows/release.yml@v3' # ratchet:exclude
16
12
secrets :
17
13
ACTIONS_BOT_TOKEN : ' ${{ secrets.ACTIONS_BOT_TOKEN }}'
Original file line number Diff line number Diff line change 31
31
runs-on : ' ${{ matrix.os }}'
32
32
33
33
steps :
34
- - uses : ' actions/checkout@v4 '
34
+ - uses : ' actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 ' # ratchet:actions/checkout@v4
35
35
36
- - uses : ' actions/setup-node@v4 '
36
+ - uses : ' actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a ' # ratchet:actions/setup-node@v4
37
37
with :
38
38
node-version : ' 20.x'
39
39
47
47
run : ' npm run lint'
48
48
49
49
- id : ' auth'
50
- uses : ' google-github-actions/auth@v2'
50
+ uses : ' google-github-actions/auth@v2' # ratchet:exclude
51
51
if : ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
52
52
with :
53
53
project_id : ' ${{ vars.PROJECT_ID }}'
You can’t perform that action at this time.
0 commit comments