Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

steps:
- name: Checkout repository
uses: actions/checkout@v6

Check failure on line 23 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 23 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:23: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Check failure on line 28 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 28 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:28: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Check failure on line 31 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 31 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:31: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Free disk space
run: |
Expand All @@ -41,7 +41,7 @@
df -h

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3

Check failure on line 44 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 44 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:44: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -49,7 +49,7 @@

- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5

Check failure on line 52 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 52 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:52: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand All @@ -61,12 +61,14 @@
type=sha,prefix=,suffix=-${{ github.sha }}

- name: Build and push Docker image
uses: docker/build-push-action@v6

Check failure on line 64 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 64 in .github/workflows/publish-container.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-container.yml:64: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
context: .
file: ./deploy/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
provenance: mode=max
sbom: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
Expand Down
Loading