Skip to content

chore(deps): update docker.io/library/alpine docker tag to v3.21.0 #24

chore(deps): update docker.io/library/alpine docker tag to v3.21.0

chore(deps): update docker.io/library/alpine docker tag to v3.21.0 #24

Workflow file for this run

name: Build & Push Container Image
on:
push:
branches:
- main
tags:
- "v*"
pull_request: {}
env:
REGISTRY: ghcr.io
IMAGE_NAME: vshn/clamav
jobs:
# Push image to GitHub Packages.
build_and_push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Log in to the Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Determine Tags & Labels based on Git ref
id: meta
uses: docker/metadata-action@v5
with:
images: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}"
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value={{date 'YYYYMMDD-HHmmss'}},enable={{is_default_branch}}
- name: Build & Push container image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}