chore(deps): update nginx:alpine docker digest to 8491795 #2617
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: Docker Image | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| ghcr: | |
| name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3 | |
| - name: Login to ghcr.io | |
| uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} App | |
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6 | |
| with: | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| push: ${{ github.ref == 'refs/heads/main' }} | |
| tags: ghcr.io/spillhuset/shqueue-app | |
| - name: ${{ github.ref == 'refs/heads/main' && 'Build and Push' || 'Test Build' }} Nginx | |
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6 | |
| with: | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| push: ${{ github.ref == 'refs/heads/main' }} | |
| tags: ghcr.io/spillhuset/shqueue-nginx | |
| target: runtime-nginx |