chore(deps): pin dependencies #55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [pull_request] | |
# TODO: we clould run other checks as well (e.g. tf linting, docs creation etc.), maybe even via pre-commit | |
jobs: | |
commitlint: | |
runs-on: zon-ubuntu-general-dind | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: wagoid/commitlint-github-action@9763196e10f27aef304c9b8b660d31d97fce0f99 # v5 | |
tests: | |
runs-on: zon-ubuntu-general-dind | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Call baseproject GHA | |
id: baseproject | |
uses: ./ | |
with: | |
project_name: github-actions-baseproject-tests | |
gke_auth: true | |
vault_export_token: true | |
gcr_auth: true | |
gar_docker_auth: true | |
- name: '[TEST] List GKE Clusters in Google Cloud' | |
run: gcloud container clusters list | |
- name: '[TEST] Create a Kubernetes ConfigMap' | |
run: kubectl create configmap test-runner-${{ github.run_id }}-${{ github.run_attempt }} --from-literal=foo=bar | |
- name: '[TEST] Read example value from Vault' | |
uses: hashicorp/vault-action@d1720f055e0635fd932a1d2a48f87a666a57906c # v3 | |
with: | |
url: ${{ steps.baseproject.outputs.vault_addr }} | |
token: ${{ steps.baseproject.outputs.vault_token }} | |
role: ${{ steps.baseproject.outputs.gha_vault_role }} | |
secrets: | | |
zon/v1/github-actions-baseproject-tests/example foo | EXAMPLE_VAULT_VALUE ; | |
- name: '[TEST] Run docker build' | |
run: | | |
docker buildx build --output type=docker \ | |
--cache-from type=gha --cache-to type=gha,mode=max \ | |
--tag test ./test |