Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update action dependencies #39

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions actions/get-vault-secrets/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ runs:
echo "Invalid value for vault_instance input: ${{ inputs.vault_instance }}. Must be 'dev' or 'ops'."
exit 1
- id: vault-iap-auth
uses: google-github-actions/auth@v1
# v2.1.0
uses: google-github-actions/auth@5a50e581162a13f4baa8916d01180d2acbc04363
with:
# Note that these aren't secrets, login is secured through Github's OIDC integrations with GCP and Vault.
# Get with:
Expand Down Expand Up @@ -65,7 +66,8 @@ runs:
# Get the secrets
- name: Import Secrets
id: import-secrets
uses: hashicorp/vault-action@v2
# v2.7.5
uses: hashicorp/vault-action@e3d5714d59e151ca80233142880b9da9d983a48c
with:
url: "https://vault-github-actions.grafana-${{ inputs.vault_instance }}.net/"
role: vault-github-actions
Expand Down
9 changes: 6 additions & 3 deletions actions/trigger-argo-workflow/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ runs:

- name: Restore cache
id: restore
uses: actions/cache/[email protected]
# v4.0.0
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2
with:
path: ${{ github.workspace }}/bin
key: argo-linux-amd64-${{ steps.argo-version.outputs.version }}
Expand All @@ -87,7 +88,8 @@ runs:
- name: Save to cache
id: save
if: steps.gunzip.outcome == 'success'
uses: actions/cache/[email protected]
# v4.0.0
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2
with:
path: ${{ github.workspace }}/bin
key: ${{ steps.restore.outputs.cache-primary-key }}
Expand All @@ -98,7 +100,8 @@ runs:
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH

- name: Setup go
uses: actions/[email protected]
# v5.0.0
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
with:
check-latest: true
cache-dependency-path: |
Expand Down
Loading