Skip to content

Bump zizmorcore/zizmor-action from 0.5.7 to 0.6.0 #1812

Bump zizmorcore/zizmor-action from 0.5.7 to 0.6.0

Bump zizmorcore/zizmor-action from 0.5.7 to 0.6.0 #1812

Workflow file for this run

name: docker
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
docker:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
packages: write # pushes image layers to ghcr.io via GITHUB_TOKEN
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- run: docker build --pull --no-cache --tag composer/satis --tag ghcr.io/composer/satis .
- if: github.ref == 'refs/heads/main'
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- if: github.ref == 'refs/heads/main'
run: docker push composer/satis
- if: github.ref == 'refs/heads/main'
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- if: github.ref == 'refs/heads/main'
run: docker push ghcr.io/composer/satis