mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
Update actions/checkout to 4.1.7 (#27636)
This commit is contained in:
parent
4721c7b650
commit
64ce6e74da
2
.github/actions/changed-files/action.yml
vendored
2
.github/actions/changed-files/action.yml
vendored
@ -53,7 +53,7 @@ runs:
|
|||||||
checkout_ref='${{ github.ref }}'
|
checkout_ref='${{ github.ref }}'
|
||||||
fi
|
fi
|
||||||
echo "ref=${checkout_ref}" | tee -a "$GITHUB_OUTPUT"
|
echo "ref=${checkout_ref}" | tee -a "$GITHUB_OUTPUT"
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
repository: ${{ github.repository }}
|
repository: ${{ github.repository }}
|
||||||
path: "changed-files"
|
path: "changed-files"
|
||||||
|
2
.github/actions/checkout/action.yml
vendored
2
.github/actions/checkout/action.yml
vendored
@ -70,7 +70,7 @@ runs:
|
|||||||
echo "ref=${checkout_ref}"
|
echo "ref=${checkout_ref}"
|
||||||
echo "depth=${fetch_depth}"
|
echo "depth=${fetch_depth}"
|
||||||
} | tee -a "$GITHUB_OUTPUT"
|
} | tee -a "$GITHUB_OUTPUT"
|
||||||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
path: ${{ inputs.path }}
|
path: ${{ inputs.path }}
|
||||||
fetch-depth: ${{ steps.ref.outputs.depth }}
|
fetch-depth: ${{ steps.ref.outputs.depth }}
|
||||||
|
2
.github/workflows/actionlint.yml
vendored
2
.github/workflows/actionlint.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
|||||||
actionlint:
|
actionlint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: "Check workflow files"
|
- name: "Check workflow files"
|
||||||
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint@sha256:93834930f56ca380be3e9a3377670d7aa5921be251b9c774891a39b3629b83b8
|
uses: docker://docker.mirror.hashicorp.services/rhysd/actionlint@sha256:93834930f56ca380be3e9a3377670d7aa5921be251b9c774891a39b3629b83b8
|
||||||
with:
|
with:
|
||||||
|
6
.github/workflows/build-artifacts-ce.yml
vendored
6
.github/workflows/build-artifacts-ce.yml
vendored
@ -98,7 +98,7 @@ jobs:
|
|||||||
runs-on: ${{ fromJSON(inputs.compute-build) }}
|
runs-on: ${{ fromJSON(inputs.compute-build) }}
|
||||||
name: (${{ matrix.goos }}, ${{ matrix.goarch }})
|
name: (${{ matrix.goos }}, ${{ matrix.goarch }})
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.checkout-ref }}
|
ref: ${{ inputs.checkout-ref }}
|
||||||
- uses: ./.github/actions/build-vault
|
- uses: ./.github/actions/build-vault
|
||||||
@ -200,7 +200,7 @@ jobs:
|
|||||||
name: (${{ matrix.goos }}, ${{ matrix.goarch }}${{ matrix.goarm && ' ' || '' }}${{ matrix.goarm }})
|
name: (${{ matrix.goos }}, ${{ matrix.goarch }}${{ matrix.goarm && ' ' || '' }}${{ matrix.goarm }})
|
||||||
runs-on: ${{ fromJSON(inputs.compute-build) }}
|
runs-on: ${{ fromJSON(inputs.compute-build) }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.checkout-ref }}
|
ref: ${{ inputs.checkout-ref }}
|
||||||
- uses: ./.github/actions/build-vault
|
- uses: ./.github/actions/build-vault
|
||||||
@ -228,7 +228,7 @@ jobs:
|
|||||||
- core
|
- core
|
||||||
- extended
|
- extended
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.checkout-ref }}
|
ref: ${{ inputs.checkout-ref }}
|
||||||
- name: Determine status
|
- name: Determine status
|
||||||
|
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -105,7 +105,7 @@ jobs:
|
|||||||
workflow-trigger: ${{ steps.metadata.outputs.workflow-trigger }}
|
workflow-trigger: ${{ steps.metadata.outputs.workflow-trigger }}
|
||||||
steps:
|
steps:
|
||||||
# Run the changed-files action to determine what Git reference we should check out
|
# Run the changed-files action to determine what Git reference we should check out
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/changed-files
|
- uses: ./.github/actions/changed-files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
- uses: ./.github/actions/checkout
|
- uses: ./.github/actions/checkout
|
||||||
@ -159,7 +159,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
cache-key: ui-${{ steps.ui-hash.outputs.ui-hash }}
|
cache-key: ui-${{ steps.ui-hash.outputs.ui-hash }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.setup.outputs.checkout-ref }}
|
ref: ${{ needs.setup.outputs.checkout-ref }}
|
||||||
- name: Get UI hash
|
- name: Get UI hash
|
||||||
@ -291,7 +291,7 @@ jobs:
|
|||||||
- test
|
- test
|
||||||
- test-containers
|
- test-containers
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- id: status
|
- id: status
|
||||||
name: Determine status
|
name: Determine status
|
||||||
run: |
|
run: |
|
||||||
|
2
.github/workflows/changelog-checker.yml
vendored
2
.github/workflows/changelog-checker.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
fetch-depth: 0 # by default the checkout action doesn't checkout all branches
|
fetch-depth: 0 # by default the checkout action doesn't checkout all branches
|
||||||
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
|||||||
ui-changed: ${{ steps.changed-files.outputs.ui-changed }}
|
ui-changed: ${{ steps.changed-files.outputs.ui-changed }}
|
||||||
workflow-trigger: ${{ steps.metadata.outputs.workflow-trigger }}
|
workflow-trigger: ${{ steps.metadata.outputs.workflow-trigger }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/changed-files
|
- uses: ./.github/actions/changed-files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
- uses: ./.github/actions/checkout
|
- uses: ./.github/actions/checkout
|
||||||
@ -146,7 +146,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
runs-on: ${{ fromJSON(needs.setup.outputs.compute-test-ui) }}
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-test-ui) }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
name: status
|
name: status
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.setup.outputs.checkout-ref }}
|
ref: ${{ needs.setup.outputs.checkout-ref }}
|
||||||
@ -229,7 +229,7 @@ jobs:
|
|||||||
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","linux","small"]') }}
|
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","linux","small"]') }}
|
||||||
permissions: write-all # Ensure we have id-token:write access for vault-auth.
|
permissions: write-all # Ensure we have id-token:write access for vault-auth.
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
# Determine the overall status of our required test jobs.
|
# Determine the overall status of our required test jobs.
|
||||||
- name: Determine status
|
- name: Determine status
|
||||||
id: status
|
id: status
|
||||||
|
12
.github/workflows/code-checker.yml
vendored
12
.github/workflows/code-checker.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
name: Setup
|
name: Setup
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: Ensure Go modules are cached
|
- name: Ensure Go modules are cached
|
||||||
uses: ./.github/actions/set-up-go
|
uses: ./.github/actions/set-up-go
|
||||||
with:
|
with:
|
||||||
@ -30,7 +30,7 @@ jobs:
|
|||||||
needs: setup
|
needs: setup
|
||||||
if: github.base_ref == 'main'
|
if: github.base_ref == 'main'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
@ -46,7 +46,7 @@ jobs:
|
|||||||
needs: setup
|
needs: setup
|
||||||
if: github.base_ref == 'main'
|
if: github.base_ref == 'main'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
@ -66,7 +66,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: setup
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
@ -79,7 +79,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: setup
|
needs: setup
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/install-external-tools # for buf and gofumpt
|
- uses: ./.github/actions/install-external-tools # for buf and gofumpt
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
with:
|
with:
|
||||||
@ -97,6 +97,6 @@ jobs:
|
|||||||
container:
|
container:
|
||||||
image: returntocorp/semgrep@sha256:cfad18cfb6536aa48ad5a71017207a10320b4e17e3b2bd7b7de27b42dc9651e7 #v1.58
|
image: returntocorp/semgrep@sha256:cfad18cfb6536aa48ad5a71017207a10320b4e17e3b2bd7b7de27b42dc9651e7 #v1.58
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: Run Semgrep Rules
|
- name: Run Semgrep Rules
|
||||||
run: semgrep ci --include '*.go' --config 'tools/semgrep/ci'
|
run: semgrep ci --include '*.go' --config 'tools/semgrep/ci'
|
||||||
|
2
.github/workflows/copywrite.yml
vendored
2
.github/workflows/copywrite.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
|||||||
copywrite:
|
copywrite:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: hashicorp/setup-copywrite@32638da2d4e81d56a0764aa1547882fc4d209636 # v1.1.3
|
- uses: hashicorp/setup-copywrite@32638da2d4e81d56a0764aa1547882fc4d209636 # v1.1.3
|
||||||
name: Setup Copywrite
|
name: Setup Copywrite
|
||||||
with:
|
with:
|
||||||
|
4
.github/workflows/enos-lint.yml
vendored
4
.github/workflows/enos-lint.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
runs-on: ${{ steps.metadata.outputs.runs-on }}
|
runs-on: ${{ steps.metadata.outputs.runs-on }}
|
||||||
version: ${{ steps.metadata.outputs.version }}
|
version: ${{ steps.metadata.outputs.version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- id: set-product-version
|
- id: set-product-version
|
||||||
uses: hashicorp/actions-set-product-version@v2
|
uses: hashicorp/actions-set-product-version@v2
|
||||||
- id: metadata
|
- id: metadata
|
||||||
@ -37,7 +37,7 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
ENOS_VAR_tfc_api_token: ${{ secrets.TF_API_TOKEN }}
|
ENOS_VAR_tfc_api_token: ${{ secrets.TF_API_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: hashicorp/setup-terraform@v3
|
- uses: hashicorp/setup-terraform@v3
|
||||||
with:
|
with:
|
||||||
terraform_wrapper: false
|
terraform_wrapper: false
|
||||||
|
@ -15,7 +15,7 @@ jobs:
|
|||||||
vault-version: ${{ github.event.client_payload.payload.version }}
|
vault-version: ${{ github.event.client_payload.payload.version }}
|
||||||
vault-version-package: ${{ steps.get-metadata.outputs.vault-version-package }}
|
vault-version-package: ${{ steps.get-metadata.outputs.vault-version-package }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
# Check out the repository at the same Git SHA that was used to create
|
# Check out the repository at the same Git SHA that was used to create
|
||||||
# the artifacts to get the correct metadata.
|
# the artifacts to get the correct metadata.
|
||||||
|
2
.github/workflows/enos-run-k8s.yml
vendored
2
.github/workflows/enos-run-k8s.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: Set up Terraform
|
- name: Set up Terraform
|
||||||
uses: hashicorp/setup-terraform@v3
|
uses: hashicorp/setup-terraform@v3
|
||||||
with:
|
with:
|
||||||
|
2
.github/workflows/oss.yml
vendored
2
.github/workflows/oss.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- if: github.event.pull_request != null
|
- if: github.event.pull_request != null
|
||||||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- if: github.event.pull_request != null
|
- if: github.event.pull_request != null
|
||||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||||
id: changes
|
id: changes
|
||||||
|
2
.github/workflows/plugin-update-check.yml
vendored
2
.github/workflows/plugin-update-check.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
|||||||
RUN_ID: "${{github.run_id}}"
|
RUN_ID: "${{github.run_id}}"
|
||||||
steps:
|
steps:
|
||||||
- run: echo "Branch $PLUGIN_BRANCH of $PLUGIN_REPO"
|
- run: echo "Branch $PLUGIN_BRANCH of $PLUGIN_REPO"
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
# We don't use the default token so that checks are executed on the resulting PR
|
# We don't use the default token so that checks are executed on the resulting PR
|
||||||
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
|
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
|
||||||
|
2
.github/workflows/plugin-update.yml
vendored
2
.github/workflows/plugin-update.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
VAULT_BRANCH: ${{ inputs.branch }}
|
VAULT_BRANCH: ${{ inputs.branch }}
|
||||||
REVIEWER: ${{ inputs.reviewer || github.actor }}
|
REVIEWER: ${{ inputs.reviewer || github.actor }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
# We don't use the default token so that checks are executed on the resulting PR
|
# We don't use the default token so that checks are executed on the resulting PR
|
||||||
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
|
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
|
||||||
|
4
.github/workflows/security-scan.yml
vendored
4
.github/workflows/security-scan.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
&& (github.actor != 'dependabot[bot]') && ( github.actor != 'hc-github-team-secure-vault-core') }}
|
&& (github.actor != 'dependabot[bot]') && ( github.actor != 'hc-github-team-secure-vault-core') }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
||||||
@ -36,7 +36,7 @@ jobs:
|
|||||||
python-version: 3.x
|
python-version: 3.x
|
||||||
|
|
||||||
- name: Clone Security Scanner repo
|
- name: Clone Security Scanner repo
|
||||||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
repository: hashicorp/security-scanner
|
repository: hashicorp/security-scanner
|
||||||
token: ${{ secrets.HASHIBOT_PRODSEC_GITHUB_TOKEN }}
|
token: ${{ secrets.HASHIBOT_PRODSEC_GITHUB_TOKEN }}
|
||||||
|
2
.github/workflows/stable-website.yaml
vendored
2
.github/workflows/stable-website.yaml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
name: Cherry pick to stable-website branch
|
name: Cherry pick to stable-website branch
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: stable-website
|
ref: stable-website
|
||||||
- run: |
|
- run: |
|
||||||
|
2
.github/workflows/test-ci-bootstrap.yml
vendored
2
.github/workflows/test-ci-bootstrap.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
|||||||
TF_VAR_aws_ssh_public_key: ${{ secrets.SSH_KEY_PUBLIC_CI }}
|
TF_VAR_aws_ssh_public_key: ${{ secrets.SSH_KEY_PUBLIC_CI }}
|
||||||
TF_TOKEN_app_terraform_io: ${{ secrets.TF_API_TOKEN }}
|
TF_TOKEN_app_terraform_io: ${{ secrets.TF_API_TOKEN }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: Set up Terraform
|
- name: Set up Terraform
|
||||||
uses: hashicorp/setup-terraform@v3
|
uses: hashicorp/setup-terraform@v3
|
||||||
- name: Configure AWS credentials
|
- name: Configure AWS credentials
|
||||||
|
2
.github/workflows/test-ci-cleanup.yml
vendored
2
.github/workflows/test-ci-cleanup.yml
vendored
@ -49,7 +49,7 @@ jobs:
|
|||||||
role-skip-session-tagging: true
|
role-skip-session-tagging: true
|
||||||
role-duration-seconds: 3600
|
role-duration-seconds: 3600
|
||||||
mask-aws-account-id: false
|
mask-aws-account-id: false
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
cp enos/ci/aws-nuke.yml .
|
cp enos/ci/aws-nuke.yml .
|
||||||
|
4
.github/workflows/test-enos-scenario-ui.yml
vendored
4
.github/workflows/test-enos-scenario-ui.yml
vendored
@ -40,7 +40,7 @@ jobs:
|
|||||||
runs-on: ${{ steps.get-metadata.outputs.runs-on }}
|
runs-on: ${{ steps.get-metadata.outputs.runs-on }}
|
||||||
vault_edition: ${{ steps.get-metadata.outputs.vault_edition }}
|
vault_edition: ${{ steps.get-metadata.outputs.vault_edition }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- id: get-metadata
|
- id: get-metadata
|
||||||
env:
|
env:
|
||||||
IS_ENT: ${{ startsWith(github.event.repository.name, 'vault-enterprise' ) }}
|
IS_ENT: ${{ startsWith(github.event.repository.name, 'vault-enterprise' ) }}
|
||||||
@ -72,7 +72,7 @@ jobs:
|
|||||||
GOPRIVATE: github.com/hashicorp
|
GOPRIVATE: github.com/hashicorp
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
|
4
.github/workflows/test-go.yml
vendored
4
.github/workflows/test-go.yml
vendored
@ -95,7 +95,7 @@ jobs:
|
|||||||
matrix: ${{ steps.build.outputs.matrix }}
|
matrix: ${{ steps.build.outputs.matrix }}
|
||||||
matrix_ids: ${{ steps.build.outputs.matrix_ids }}
|
matrix_ids: ${{ steps.build.outputs.matrix_ids }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.checkout-ref }}
|
ref: ${{ inputs.checkout-ref }}
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
@ -230,7 +230,7 @@ jobs:
|
|||||||
go-test-results-download-pattern: ${{ steps.metadata.outputs.go-test-results-download-pattern }}
|
go-test-results-download-pattern: ${{ steps.metadata.outputs.go-test-results-download-pattern }}
|
||||||
data-race-log-download-pattern: ${{ steps.metadata.outputs.data-race-log-download-pattern }}
|
data-race-log-download-pattern: ${{ steps.metadata.outputs.data-race-log-download-pattern }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.checkout-ref }}
|
ref: ${{ inputs.checkout-ref }}
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
|
@ -20,7 +20,7 @@ jobs:
|
|||||||
go-test:
|
go-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
- uses: ./.github/actions/set-up-go
|
- uses: ./.github/actions/set-up-go
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
|
@ -49,7 +49,7 @@ jobs:
|
|||||||
sample: ${{ steps.metadata.outputs.sample }}
|
sample: ${{ steps.metadata.outputs.sample }}
|
||||||
vault-version: ${{ steps.metadata.outputs.vault-version }}
|
vault-version: ${{ steps.metadata.outputs.vault-version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.vault-revision }}
|
ref: ${{ inputs.vault-revision }}
|
||||||
- uses: hashicorp/action-setup-enos@v1
|
- uses: hashicorp/action-setup-enos@v1
|
||||||
@ -105,7 +105,7 @@ jobs:
|
|||||||
ENOS_VAR_distro_version_ubuntu: ${{ matrix.attributes.distro_version_ubuntu }}
|
ENOS_VAR_distro_version_ubuntu: ${{ matrix.attributes.distro_version_ubuntu }}
|
||||||
ENOS_DEBUG_DATA_ROOT_DIR: /tmp/enos-debug-data
|
ENOS_DEBUG_DATA_ROOT_DIR: /tmp/enos-debug-data
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.vault-revision }}
|
ref: ${{ inputs.vault-revision }}
|
||||||
- uses: hashicorp/setup-terraform@v3
|
- uses: hashicorp/setup-terraform@v3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user