updated: actions and build new version 1.26.0 #252
This file contains 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: Build and push image📦 | |
on: | |
workflow_dispatch: | |
# schedule: | |
# - cron: "00 17 * * SAT" | |
push: | |
branches: ["main"] | |
# pull_request: | |
# branches: ["main"] | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build: | |
if: github.actor == 'ammnt' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
security-events: write | |
steps: | |
- name: Checkout repository🧱 | |
uses: actions/[email protected] | |
- name: Install cosign🔒 | |
if: github.event_name != 'pull_request' | |
uses: sigstore/[email protected] | |
- name: Setup Docker buildx🛠️ | |
uses: docker/[email protected] | |
- name: Log into ${{ env.REGISTRY }}🔑 | |
if: github.event_name != 'pull_request' | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log into Docker Hub🔑 | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Extract Docker metadata🔬 | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build the Docker image⛓️ | |
id: build | |
uses: docker/[email protected] | |
with: | |
provenance: false | |
context: . | |
platforms: linux/amd64 | |
load: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Slim the Docker image🚀 | |
uses: kitabisa/[email protected] | |
env: | |
DSLIM_HTTP_PROBE: false | |
with: | |
target: ghcr.io/ammnt/nginx:main | |
tag: ghcr.io/ammnt/nginx:main | |
overwrite: true | |
- run: echo "${REPORT}" | |
env: | |
REPORT: ${{ steps.slim.outputs.report }} | |
- name: Test the Docker image🧪 | |
run: | | |
docker run -d --rm -p 127.0.0.1:8080:8080/tcp ghcr.io/ammnt/nginx:main | |
curl -v http://127.0.0.1:8080 || exit 1 | |
- name: Analyze for critical and high CVEs💊 | |
id: docker-scout-cves | |
if: ${{ github.event_name != 'pull_request_target' }} | |
uses: docker/[email protected] | |
with: | |
command: cves,sbom | |
image: ghcr.io/ammnt/nginx:main | |
sarif-file: sarif.output.json | |
summary: true | |
- name: Upload SARIF result📊 | |
id: upload-sarif | |
if: ${{ github.event_name != 'pull_request_target' }} | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: sarif.output.json | |
- name: Push the Docker images to registries💾 | |
run: | | |
docker push ghcr.io/ammnt/nginx:main | |
docker tag ghcr.io/ammnt/nginx:main ammnt/nginx:main | |
docker push ammnt/nginx:main | |
- name: Sign the published Docker image🔐 | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
COSIGN_EXPERIMENTAL: "true" | |
run: | | |
cosign sign ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build.outputs.digest }} | |
cosign sign docker.io/${{ env.IMAGE_NAME }}@${{ steps.build.outputs.digest }} |