Compare commits

..

1 Commits

Author SHA1 Message Date
1ffa99ac3a fix build pipeline
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 30s
Container Publish / build-image (arm64) (push) Successful in 20s
Container Publish / update docker manifest (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 6s
2025-10-03 07:46:04 +02:00
3 changed files with 5 additions and 7 deletions

View File

@@ -7,10 +7,8 @@ env:
on: on:
push: push:
tags:
- '*'
schedule: schedule:
- cron: "0 12 3 * *" - cron: "0 12 * * 3"
workflow_dispatch: workflow_dispatch:
workflow_call: workflow_call:
workflow_run: workflow_run:
@@ -48,7 +46,7 @@ jobs:
run: | run: |
docker build \ docker build \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \ --tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
--platform linux/${{ matrix.arch }} -f Dockerfile . --platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }}
manifest: manifest:

View File

@@ -61,4 +61,4 @@ jobs:
token: ${{ secrets.TELEGRAM_TOKEN }} token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown format: markdown
message: | message: |
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}` Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest`

View File

@@ -1,8 +1,8 @@
FROM alpine:latest FROM alpine:latest
RUN \ RUN \
apk -U upgrade && \ apk --no-cache upgrade && \
apk add curl bash apk --no-cache add curl bash
COPY --chown=root:root --chmod=0755 run.sh / COPY --chown=root:root --chmod=0755 run.sh /