build(deps): Bump alpine from 5b10f43 to 28bd5fe
#684
Workflow file for this run
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
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| pull_request: {} | |
| env: | |
| # Common versions | |
| GOLANGCI_VERSION: 'v2.10.1' | |
| KUBERNETES_VERSION: '1.35.x' | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| pull-requests: read # for golangci/golangci-lint-action to fetch pull requests | |
| runs-on: ubuntu-latest | |
| if: github.ref != 'refs/heads/main' | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Go | |
| uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
| id: setup-go | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Download Go modules | |
| if: ${{ steps.setup-go.outputs.cache-hit != 'true' }} | |
| run: go mod download | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1 | |
| with: | |
| version: ${{ env.GOLANGCI_VERSION }} | |
| args: --timeout=10m | |
| skip-pkg-cache: true | |
| skip-build-cache: true | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| if: github.ref != 'refs/heads/main' | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Fetch History | |
| run: git fetch --prune --unshallow | |
| - name: Setup Go | |
| uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
| id: setup-go | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Download Go modules | |
| if: ${{ steps.setup-go.outputs.cache-hit != 'true' }} | |
| run: go mod download | |
| - name: Cache envtest binaries | |
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | |
| with: | |
| path: bin/k8s | |
| key: ${{ runner.os }}-envtest-${{env.KUBERNETES_VERSION}} | |
| - name: Run Unit Tests | |
| run: | | |
| make test | |
| publish-artifacts: | |
| uses: ./.github/workflows/publish.yml | |
| permissions: | |
| id-token: write | |
| packages: write | |
| contents: read | |
| strategy: | |
| matrix: | |
| include: | |
| - dockerfile: "Dockerfile" | |
| build-args: "CGO_ENABLED=0" | |
| build-arch: "amd64 arm64" | |
| build-platform: "linux/amd64,linux/arm64" | |
| tag-suffix: "" # distroless | |
| with: | |
| dockerfile: ${{ matrix.dockerfile }} | |
| tag-suffix: ${{ matrix.tag-suffix }} | |
| image-name: ghcr.io/${{ github.repository }} | |
| build-platform: ${{ matrix.build-platform }} | |
| build-args: ${{ matrix.build-args }} | |
| build-arch: ${{ matrix.build-arch }} | |
| ref: ${{ github.ref }} | |
| username: ${{ github.actor }} | |
| secrets: | |
| GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }} |