🆙bump: version up dependencies #877
Workflow file for this run
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: Docker CI/CD | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
paths: | |
- "app/**" | |
- "public/**" | |
- "test/**" | |
- ".dockerignore" | |
- "bun.lockb" | |
- "Dockerfile" | |
- "package.json" | |
- "*config.*" | |
push: | |
branches: main | |
paths: | |
- "app/**" | |
- "public/**" | |
- "test/**" | |
- ".dockerignore" | |
- "bun.lockb" | |
- "Dockerfile" | |
- "package.json" | |
- "*config.*" | |
tags: | |
- "v*.*.*" | |
workflow_dispatch: | |
inputs: | |
no-cache: | |
description: "Build docker images with no cache" | |
default: false | |
required: false | |
type: boolean | |
push: | |
description: 'Push docker image to registry' | |
required: false | |
default: false | |
type: boolean | |
permissions: | |
attestations: write | |
contents: read | |
id-token: write | |
packages: write | |
pull-requests: write | |
env: | |
REPOSITORY: jambalaya56562/blog | |
GHCR_REGISTRY: ghcr.io | |
GHCR_REPOSITORY: jambalaya56562/blog | |
SHA: ${{ github.event.pull_request.head.sha || github.sha }} | |
IS_PUSH: ${{ github.event_name == 'push' || inputs.push == true }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: github.repository_owner == 'jambalaya56562' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.SHA }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PAT }} | |
- name: Login to GitHub Container Registry | |
if: fromJSON(env.IS_PUSH) | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.GHCR_REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker Meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
name=${{ env.REPOSITORY }} | |
name=${{ env.GHCR_REGISTRY }}/${{ env.GHCR_REPOSITORY }},enable=${{ fromJSON(env.IS_PUSH) }} | |
labels: org.opencontainers.image.revision=${{ env.SHA }} | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }} | |
type=ref,event=pr,prefix=pr- | |
type=raw,value=canary,enable=${{ github.event_name != 'pull_request_target' }} | |
env: | |
DOCKER_METADATA_ANNOTATIONS_LEVELS: ${{ fromJSON(env.IS_PUSH) && 'manifest,index' || 'manifest' }} | |
- name: Build and Push | |
uses: docker/build-push-action@v6 | |
id: push | |
with: | |
annotations: ${{ steps.meta.outputs.annotations }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
context: . | |
labels: ${{ steps.meta.outputs.labels }} | |
load: ${{ !fromJSON(env.IS_PUSH) }} | |
no-cache: ${{ inputs.no-cache == true }} | |
platforms: ${{ fromJSON(env.IS_PUSH) && 'linux/amd64,linux/arm64' || 'linux/amd64' }} | |
provenance: ${{ fromJSON(env.IS_PUSH) && 'mode=max' }} | |
push: ${{ fromJSON(env.IS_PUSH) }} | |
sbom: ${{ fromJSON(env.IS_PUSH) }} | |
tags: ${{ steps.meta.outputs.tags }} | |
- name: Attest | |
if: fromJSON(env.IS_PUSH) | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-name: ${{ env.GHCR_REGISTRY }}/${{ env.GHCR_REPOSITORY }} | |
subject-digest: ${{ steps.push.outputs.digest }} | |
- name: Docker Scout | |
if: github.event_name == 'pull_request_target' | |
uses: docker/scout-action@v1 | |
with: | |
command: compare | |
image: ${{ steps.meta.outputs.tags }} | |
to: ${{ env.REPOSITORY }}:canary | |
only-severities: critical,high |