This repository was archived by the owner on Oct 7, 2025. It is now read-only.
chore(deps): update ghcr.io/containerbase/ubuntu docker digests to 72… #1962
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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| DRY_RUN: ${{ github.ref_name != 'main' }} | |
| OWNER: ${{ github.repository_owner }} | |
| PLATFORMS: linux/amd64 | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: ⚙️ Setup | |
| uses: containerbase/internal-tools/setup@6b1a0257f8f6b7e796b704b959a659be56c3d713 # v3.13.10 | |
| with: | |
| save-cache: true | |
| - run: pnpm prettier | |
| build: | |
| needs: | |
| - lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| show-progress: false | |
| - uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0 | |
| - name: Docker registry login | |
| if: env.DRY_RUN == 'false' | |
| run: | | |
| echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ env.OWNER }} --password-stdin | |
| - name: Publish to ghcr.io | |
| uses: containerbase/internal-tools@6b1a0257f8f6b7e796b704b959a659be56c3d713 # v3.13.10 | |
| with: | |
| command: docker-builder | |
| image-prefix: ghcr.io/${{ env.OWNER }} | |
| platforms: ${{ env.PLATFORMS }} | |
| last-only: true | |
| major-minor: false | |
| dry-run: ${{ env.DRY_RUN }} | |
| release: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| show-progress: false | |
| - name: Init | |
| run: ./bin/init.sh | |
| - uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0 | |
| if: env.DRY_RUN == 'false' | |
| with: | |
| allowUpdates: true | |
| body: See https://github.com/containerbase/base/releases/tag/${{ env.VERSION }} for more changes | |
| commit: ${{ github.sha }} | |
| name: ${{ env.VERSION }} | |
| tag: v${{ env.VERSION }} | |
| token: ${{ secrets.GITHUB_TOKEN }} |