Skip to content

Commit e9c2004

Browse files
[VAULT-39208]actions: update action pins (#8864) (#8869) (#8874)
Signed-off-by: Ryan Cragun <[email protected]> Co-authored-by: Ryan Cragun <[email protected]>
1 parent d3066cd commit e9c2004

29 files changed

+110
-110
lines changed

.github/actions/build-vault/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ runs:
7070
shell: bash
7171
run: git config --global url."https://${{ inputs.github-token }}:@github.com".insteadOf "https://github.com"
7272
- name: Restore UI from cache
73-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
73+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
7474
with:
7575
# Restore the UI asset from the UI build workflow. Never use a partial restore key.
7676
enableCrossOsArchive: true
@@ -126,7 +126,7 @@ runs:
126126
shell: bash
127127
run: make ci-build
128128
- if: inputs.cgo-enabled == '1'
129-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
129+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
130130
with:
131131
driver-opts: network=host # So we can run our own little registry
132132
- if: inputs.cgo-enabled == '1'

.github/actions/checkout/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ runs:
7070
echo "ref=${checkout_ref}"
7171
echo "depth=${fetch_depth}"
7272
} | tee -a "$GITHUB_OUTPUT"
73-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
73+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7474
with:
7575
path: ${{ inputs.path }}
7676
fetch-depth: ${{ steps.ref.outputs.depth }}

.github/actions/create-dynamic-config/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
} | tee -a "$GITHUB_ENV"
4040
- name: Try to restore dynamic config from cache
4141
id: dyn-cfg-cache
42-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
42+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4343
with:
4444
path: ${{ env.DYNAMIC_CONFIG_PATH }}
4545
key: dyn-cfg-${{ env.DYNAMIC_CONFIG_KEY }}

.github/actions/run-apupgrade-tests/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
run: vault-auth
3737
- name: Fetch Secrets
3838
id: secrets
39-
uses: hashicorp/vault-action@d1720f055e0635fd932a1d2a48f87a666a57906c # v3.0.0
39+
uses: hashicorp/vault-action@4c06c5ccf5c0761b6029f56cfb1dcf5565918a3b # v3.4.0
4040
with:
4141
url: ${{ steps.vault-auth.outputs.addr }}
4242
caCertificate: ${{ steps.vault-auth.outputs.ca_certificate }}
@@ -52,7 +52,7 @@ runs:
5252
run: |
5353
git config --global url."https://${{ steps.secrets.outputs.github-token }}@github.com".insteadOf https://github.com
5454
- name: Check out the .release/versions.hcl file from Vault Enterprise repository
55-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
55+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5656
with:
5757
ref: ${{ inputs.checkout-ref }}
5858
- uses: ./.github/actions/set-up-go
@@ -61,14 +61,14 @@ runs:
6161
- name: Build external tools
6262
uses: ./.github/actions/install-external-tools
6363
- name: Checkout VCM repository
64-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
64+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6565
with:
6666
repository: hashicorp/vcm
6767
ref: 1fcab6591e3bdc81d2921ca77441bfcf913c6a57
6868
token: ${{ inputs.github-token }}
6969
path: vcm
7070
- name: Checkout Vault tools repository to get the Autopilot upgrade tool
71-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
71+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7272
with:
7373
repository: hashicorp/vault-tools
7474
token: ${{ inputs.github-token }}

.github/actions/set-up-go/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
else
4141
echo "go-version=${{ inputs.go-version }}" | tee -a "$GITHUB_OUTPUT"
4242
fi
43-
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
43+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4444
with:
4545
go-version: ${{ steps.go-version.outputs.go-version }}
4646
cache: false # We use our own caching strategy
@@ -63,7 +63,7 @@ runs:
6363
echo "cache-key=go-modules-${wd_hash}-${{ hashFiles('**/go.sum') }}"
6464
} | tee -a "$GITHUB_OUTPUT"
6565
- id: cache-modules
66-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
66+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
6767
with:
6868
enableCrossOsArchive: true
6969
lookup-only: ${{ inputs.no-restore }}

.github/actions/set-up-pipeline/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
} | tee -a "$GITHUB_ENV"
3434
- name: Try to restore pipeline from cache
3535
id: pipeline-cache
36-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
36+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3737
with:
3838
path: ${{ env.PIPELINE_PATH }}
3939
key: pipeline-${{ env.PIPELINE_HASH }}

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
actionlint:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818
- name: "Run actionlint"
1919
run: |
2020
docker run --rm -v "$(pwd):/repo" --workdir /repo docker.mirror.hashicorp.services/rhysd/actionlint@sha256:887a259a5a534f3c4f36cb02dca341673c6089431057242cdc931e9f133147e9 -color -verbose

.github/workflows/add-hashicorp-contributed-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
# gh pr edit needs a .git directory so we'll do a shallow checkout
23-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
- name: "Add label to PR"
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/benchmark-prevent-performance-degradations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out code into the Go module directory
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020
with:
2121
fetch-depth: 0
2222
fetch-tags: false
@@ -29,7 +29,7 @@ jobs:
2929
- if: steps.metadata.outputs.is-ent-repo == 'true'
3030
id: vault-secrets
3131
name: Fetch Vault Secrets
32-
uses: hashicorp/vault-action@d1720f055e0635fd932a1d2a48f87a666a57906c # v3.0.0
32+
uses: hashicorp/vault-action@4c06c5ccf5c0761b6029f56cfb1dcf5565918a3b # v3.4.0
3333
with:
3434
url: ${{ steps.vault-auth.outputs.addr }}
3535
caCertificate: ${{ steps.vault-auth.outputs.ca_certificate }}

.github/workflows/build-artifacts-ce.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ${{ fromJSON(inputs.compute-build) }}
9898
name: (${{ matrix.goos }}, ${{ matrix.goarch }})
9999
steps:
100-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
100+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
101101
with:
102102
ref: ${{ inputs.checkout-ref }}
103103
- uses: ./.github/actions/build-vault
@@ -219,7 +219,7 @@ jobs:
219219
name: (${{ matrix.goos }}, ${{ matrix.goarch }}${{ matrix.goarm && ' ' || '' }}${{ matrix.goarm }})
220220
runs-on: ${{ fromJSON(inputs.compute-build) }}
221221
steps:
222-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
222+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
223223
with:
224224
ref: ${{ inputs.checkout-ref }}
225225
- uses: ./.github/actions/build-vault
@@ -247,7 +247,7 @@ jobs:
247247
- core
248248
- extended
249249
steps:
250-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
250+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
251251
with:
252252
ref: ${{ inputs.checkout-ref }}
253253
- name: Determine status

0 commit comments

Comments
 (0)