build(deps): bump the google-cloud group across 2 directories with 3 updates #10257
This file contains hidden or 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
| # (C) Copyright Confidential Containers Contributors | |
| # # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| # Run linting tools on the sources of the project. | |
| --- | |
| name: lint | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| vet-and-fmt: | |
| name: vet and fmt | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Read properties from versions.yaml | |
| run: | | |
| go_version="$(yq '.tools.golang' src/cloud-api-adaptor/versions.yaml)" | |
| [ -n "$go_version" ] | |
| echo "GO_VERSION=${go_version}" >> "$GITHUB_ENV" | |
| - name: Setup Golang version ${{ env.GO_VERSION }} | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache-dependency-path: "**/go.sum" | |
| cache: false | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y libvirt-dev | |
| - name: check | |
| run: | | |
| make fmt | |
| cd src/cloud-api-adaptor/ && make vet | |
| golangci-lint: | |
| name: golangci-lint | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Read properties from versions.yaml | |
| run: | | |
| go_version="$(yq '.tools.golang' src/cloud-api-adaptor/versions.yaml)" | |
| [ -n "$go_version" ] | |
| echo "GO_VERSION=${go_version}" >> "$GITHUB_ENV" | |
| - name: Setup Golang version ${{ env.GO_VERSION }} | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache-dependency-path: "**/go.sum" | |
| cache: false | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y libvirt-dev | |
| - name: Install golangci-lint | |
| env: | |
| GOLANGCI_LINT_VERSION: "2.9.0" | |
| working-directory: /tmp | |
| run: | | |
| curl -sSfLO "https://github.com/golangci/golangci-lint/releases/download/v${GOLANGCI_LINT_VERSION}/golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64.tar.gz" | |
| tar -xzf "golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64.tar.gz" | |
| sudo mv "golangci-lint-${GOLANGCI_LINT_VERSION}-linux-amd64/golangci-lint" /usr/local/bin | |
| - name: check | |
| run: make golangci-lint | |
| codeql: | |
| permissions: | |
| actions: read # Required to read workflow artifacts | |
| contents: read # Required to checkout code | |
| security-events: write # Required to upload CodeQL results | |
| needs: | |
| - vet-and-fmt | |
| uses: "$/.github/workflows/lib-codeql.yaml" | |
| shellcheck: | |
| name: shellcheck | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run shellcheck | |
| run: make shellcheck | |
| go-tidy: | |
| name: go mod tidy | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Read properties from versions.yaml | |
| run: | | |
| go_version="$(yq '.tools.golang' src/cloud-api-adaptor/versions.yaml)" | |
| [ -n "$go_version" ] | |
| echo "GO_VERSION=${go_version}" >> "$GITHUB_ENV" | |
| - name: Setup Golang version ${{ env.GO_VERSION }} | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache-dependency-path: "**/go.sum" | |
| cache: false | |
| - name: Go tidy check | |
| run: make tidy-check | |
| govulncheck: | |
| name: govulncheck | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Read properties from versions.yaml | |
| run: | | |
| go_version="$(yq '.tools.golang' src/cloud-api-adaptor/versions.yaml)" | |
| [ -n "$go_version" ] | |
| echo "GO_VERSION=${go_version}" >> "$GITHUB_ENV" | |
| - name: Setup Golang version ${{ env.GO_VERSION }} | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache-dependency-path: "**/go.sum" | |
| cache: false | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y libvirt-dev | |
| - name: Install govulncheck | |
| run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
| - name: Run govulncheck | |
| run: make govulncheck | |
| terraform: | |
| name: Terraform check | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@dfe3c3f87815947d99a8997f908cb6525fc44e9e # v4.0.1 | |
| - name: Run terraform check | |
| run: make terraform-check | |
| helm-charts: | |
| name: Helm charts | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout the pull request code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Read properties from versions.yaml | |
| run: | | |
| helm_version="$(yq '.tools.helm.version' src/cloud-api-adaptor/versions.yaml)" | |
| helm_sha256="$(yq '.tools.helm.sha256' src/cloud-api-adaptor/versions.yaml)" | |
| [ -n "$helm_version" ] | |
| [ -n "$helm_sha256" ] | |
| echo "HELM_VERSION=${helm_version}" >> "$GITHUB_ENV" | |
| echo "HELM_CHECKSUM=${helm_sha256}" >> "$GITHUB_ENV" | |
| - name: Install Helm | |
| run: | | |
| curl -fsSL -o helm.tar.gz "https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz" | |
| echo "${HELM_CHECKSUM} helm.tar.gz" | sha256sum --check --strict | |
| tar -xzf helm.tar.gz | |
| sudo mv linux-amd64/helm /usr/local/bin/helm | |
| rm -rf helm.tar.gz linux-amd64 | |
| helm version | |
| - name: Static checks for peerpod-ctrl chart | |
| working-directory: src/peerpod-ctrl | |
| run: make static-helm-check | |
| - name: Static checks for webhook chart | |
| working-directory: src/webhook | |
| run: make static-helm-check | |
| - name: Static checks for peerpods chart | |
| working-directory: src/cloud-api-adaptor | |
| run: make static-helm-check |