Skip to content

build(deps): bump github.com/creasty/defaults from 1.7.0 to 1.8.0 #1013

build(deps): bump github.com/creasty/defaults from 1.7.0 to 1.8.0

build(deps): bump github.com/creasty/defaults from 1.7.0 to 1.8.0 #1013

Workflow file for this run

name: Docker
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/metadata-action@v5
id: meta
with:
images: |
icinga/icinga-notifications
tags: |
type=ref,event=branch,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
# Keep the .git to allow including the commit in the --version output, see also:
# https://docs.docker.com/build/building/context/#keep-git-directory
build-args: |
BUILDKIT_CONTEXT_KEEP_GIT_DIR=1