Compare commits

..

5 Commits

Author SHA1 Message Date
7f31074f0b build without caching
Some checks failed
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 42s
Container Publish / build-image (arm64) (push) Successful in 25s
Container Publish / update docker manifest (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 6s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Failing after 10m51s
2025-10-02 22:38:46 +02:00
234dc93cde better vulnscan message
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 11s
Container Publish / build-image (amd64) (push) Successful in 13s
Container Publish / update docker manifest (push) Successful in 9s
2025-10-02 22:31:56 +02:00
25ab10b5b5 alpine update
Some checks failed
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 12s
Container Publish / build-image (arm64) (push) Successful in 30s
Container Publish / update docker manifest (push) Successful in 13s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 5s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Failing after 27s
2025-09-29 20:50:32 +02:00
3f3c5a4eec build on wednesday 2025-09-29 20:49:28 +02:00
b7d655474e always build 2025-09-29 20:49:10 +02:00
3 changed files with 4 additions and 6 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,4 +1,4 @@
FROM alpine:3.21 FROM alpine:3.22
RUN \ RUN \
apk --no-cache upgrade && \ apk --no-cache upgrade && \