fix(storage): verify manifest and config blob digests during scrub (#… #2209
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: 'Sync images and artifacts to ghcr' | |
| on: | |
| schedule: | |
| - cron: '30 1 * * *' | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: read-all | |
| jobs: | |
| sync-golang: | |
| name: 'golang' | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| matrix: | |
| golang_version: | |
| - "1.25" | |
| - "1.26" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log in to GitHub Docker Registry | |
| uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Tag and push golang to ghcr | |
| run: | | |
| docker pull golang:${{ matrix.golang_version }} | |
| docker tag golang:${{ matrix.golang_version }} ghcr.io/${{ github.repository_owner }}/golang:${{ matrix.golang_version }} | |
| docker push ghcr.io/${{ github.repository_owner }}/golang:${{ matrix.golang_version }} | |
| sync-trivy: | |
| name: 'trivy-db' | |
| permissions: | |
| contents: read | |
| packages: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| sparse-checkout: | | |
| Makefile | |
| sparse-checkout-cone-mode: false | |
| persist-credentials: false | |
| - name: Copy trivy-db using oras cli | |
| env: | |
| GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| # setup oras | |
| make $PWD/hack/tools/bin/oras | |
| export PATH=$PATH:$PWD/hack/tools/bin | |
| test -n "${GHCR_TOKEN}" || { echo "Missing GHCR token"; exit 1; } | |
| echo "${GHCR_TOKEN}" | oras login -u "${GITHUB_ACTOR}" --password-stdin ghcr.io | |
| oras copy ghcr.io/aquasecurity/trivy-db:2 ghcr.io/${{ github.repository_owner }}/trivy-db:2 | |
| oras copy ghcr.io/aquasecurity/trivy-db:latest ghcr.io/${{ github.repository_owner }}/trivy-db:latest | |
| oras copy ghcr.io/aquasecurity/trivy-java-db:1 ghcr.io/${{ github.repository_owner }}/trivy-java-db:1 | |
| sync-localstack: | |
| name: 'localstack' | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| matrix: | |
| localstack_version: | |
| - "3.3.0" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log in to GitHub Docker Registry | |
| uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Tag and push localstack to ghcr | |
| run: | | |
| docker pull localstack/localstack:${{ matrix.localstack_version }} | |
| docker tag localstack/localstack:${{ matrix.localstack_version }} ghcr.io/${{ github.repository_owner }}/ci-images/localstack:${{ matrix.localstack_version }} | |
| docker push ghcr.io/${{ github.repository_owner }}/ci-images/localstack:${{ matrix.localstack_version }} |