update-catalogs #49
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: Update Extension Image Catalogs | |
| on: | |
| schedule: | |
| # Refresh Catalogs once a week, on Mondays - 1h after postgres-container images | |
| - cron: 0 9 * * 1 | |
| workflow_dispatch: | |
| repository_dispatch: | |
| types: [update-catalogs] | |
| permissions: read-all | |
| defaults: | |
| run: | |
| shell: "bash -Eeuo pipefail -x {0}" | |
| jobs: | |
| update-catalogs: | |
| name: Updating catalogs | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - name: Checkout artifacts | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| path: artifacts | |
| repository: cloudnative-pg/artifacts | |
| token: ${{ secrets.REPO_GHA_PAT }} | |
| ref: main | |
| - name: Update catalogs | |
| id: update-extension-catalogs | |
| uses: dagger/dagger-for-github@27b130bf0f79a7f6fbbbe0fbca6760dc9bb40a77 # v8.4.1 | |
| env: | |
| # renovate: datasource=github-tags depName=dagger/dagger versioning=semver | |
| DAGGER_VERSION: 0.20.3 | |
| with: | |
| version: ${{ env.DAGGER_VERSION }} | |
| verb: call | |
| module: ./dagger/maintenance/ | |
| args: generate-catalogs --catalogs-dir artifacts/image-catalogs/ export --path artifacts/image-catalogs-extensions/ | |
| - name: Install cosign | |
| uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3 | |
| - name: Sign catalogs | |
| run: | | |
| for file in artifacts/image-catalogs-extensions/*.yaml; do | |
| echo "Signing $file..." | |
| cosign sign-blob "$file" --bundle "$file.sigstore.json" --yes | |
| done | |
| - name: Diff | |
| working-directory: artifacts | |
| run: | | |
| git add -A . | |
| git status | |
| git diff --staged | |
| - uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10 | |
| if: github.ref == 'refs/heads/main' | |
| with: | |
| cwd: 'artifacts' | |
| add: 'image-catalogs-extensions' | |
| author_name: CloudNativePG Automated Updates | |
| author_email: noreply@cnpg.com | |
| message: 'chore: update extensions imageCatalogs' |