|
| 1 | +# This workflow file is a modified version of the goreleaser workflow file which runs during releases. |
| 2 | +# Its purpose is to attest the Docker images produced in https://github.com/fleetdm/fleet/actions/runs/13139072879, |
| 3 | +# which successfully built the images but failed to upload an attestation due to an error in the attest-build-provenance action. |
| 4 | +# Under normal circumstances, the attest-build-provenance action would be run in the goreleaser workflow file. |
| 5 | +name: attest 4.63.0 docker images |
| 6 | + |
| 7 | +on: |
| 8 | + push: |
| 9 | + branches: |
| 10 | + - attest-4.63.0-images |
| 11 | +# This allows a subsequently queued workflow run to interrupt previous runs |
| 12 | +concurrency: |
| 13 | + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id}} |
| 14 | + cancel-in-progress: true |
| 15 | + |
| 16 | +defaults: |
| 17 | + run: |
| 18 | + # fail-fast using bash -eo pipefail. See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference |
| 19 | + shell: bash |
| 20 | + |
| 21 | +permissions: |
| 22 | + contents: read |
| 23 | + |
| 24 | +jobs: |
| 25 | + goreleaser: |
| 26 | + runs-on: ubuntu-20.04-4-cores |
| 27 | + environment: Docker Hub |
| 28 | + permissions: |
| 29 | + contents: write |
| 30 | + id-token: write |
| 31 | + attestations: write |
| 32 | + packages: write |
| 33 | + steps: |
| 34 | + - name: Harden Runner |
| 35 | + uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 |
| 36 | + with: |
| 37 | + egress-policy: audit |
| 38 | + |
| 39 | + - name: Checkout |
| 40 | + uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 |
| 41 | + with: |
| 42 | + fetch-depth: 0 # Needed for goreleaser |
| 43 | + |
| 44 | + - name: Login to Docker Hub |
| 45 | + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a |
| 46 | + with: |
| 47 | + username: ${{ secrets.DOCKERHUB_USERNAME }} |
| 48 | + password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} |
| 49 | + |
| 50 | + - name: Copy artifacts file # this is the artifacts file from the goreleaser run |
| 51 | + run: | |
| 52 | + mkdir ./dist |
| 53 | + cp ./.github/workflows/config/artifacts.json ./dist/artifacts.json |
| 54 | +
|
| 55 | + - name: Get tag |
| 56 | + run: | |
| 57 | + echo "TAG=v4.63.0" >> $GITHUB_OUTPUT |
| 58 | + id: docker |
| 59 | + |
| 60 | + # Get the image digests from the goreleaser artifacts |
| 61 | + - name: Get image digests |
| 62 | + continue-on-error: true |
| 63 | + id: image_digests |
| 64 | + run: | |
| 65 | + digest_fleet=$(cat ./dist/artifacts.json | jq -r 'first(.[]|select(.type == "Published Docker Image" and (.name == "fleetdm/fleet:${{ steps.docker.outputs.tag }}")) | select(. != null)|.extra.Digest)') |
| 66 | + echo "digest_fleet=$digest_fleet" >> "$GITHUB_OUTPUT" |
| 67 | + digest_fleetctl=$(cat ./dist/artifacts.json | jq -r 'first(.[]|select(.type == "Published Docker Image" and (.name == "fleetdm/fleetctl:${{ steps.docker.outputs.tag }}")) | select(. != null)|.extra.Digest)') |
| 68 | + echo "digest_fleetctl=$digest_fleetctl" >> "$GITHUB_OUTPUT" |
| 69 | +
|
| 70 | + - name: Pull Docker images |
| 71 | + run: | |
| 72 | + docker pull fleetdm/fleet:${{ steps.docker.outputs.tag }} |
| 73 | + docker pull fleetdm/fleetctl:${{ steps.docker.outputs.tag }} |
| 74 | +
|
| 75 | + - name: Attest Fleet image |
| 76 | + uses: actions/attest-build-provenance@619dbb2e03e0189af0c55118e7d3c5e129e99726 # v2.0 |
| 77 | + continue-on-error: true |
| 78 | + with: |
| 79 | + subject-digest: ${{steps.image_digests.outputs.digest_fleet}} |
| 80 | + subject-name: "fleetdm/fleet" |
| 81 | + push-to-registry: true |
| 82 | + |
| 83 | + - name: Attest FleetCtl image |
| 84 | + uses: actions/attest-build-provenance@619dbb2e03e0189af0c55118e7d3c5e129e99726 # v2.0 |
| 85 | + continue-on-error: true |
| 86 | + with: |
| 87 | + subject-digest: ${{steps.image_digests.outputs.digest_fleetctl}} |
| 88 | + subject-name: "fleetdm/fleetctl" |
| 89 | + push-to-registry: true |
0 commit comments