Skip to content

chore(deps): bump go.elastic.co/ecszap from 1.0.2 to 1.0.3 #86

chore(deps): bump go.elastic.co/ecszap from 1.0.2 to 1.0.3

chore(deps): bump go.elastic.co/ecszap from 1.0.2 to 1.0.3 #86

Workflow file for this run

name: Docker Image CI
on:
push:
paths:
- "cmd/**"
- "internal/**"
- "pkg/**"
- "go.mod"
- "go.sum"
- "vendor/**"
- "./build/package/Dockerfile"
- ".github/workflows/docker-image.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: daruzero/cfautoupdater-go
flavor: |
latest=auto
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=pr
type=ref,event=branch
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v3
with:
context: .
file: ./build/package/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}