Skip to content

fix(deps): update module golang.org/x/crypto to v0.15.0 #99

fix(deps): update module golang.org/x/crypto to v0.15.0

fix(deps): update module golang.org/x/crypto to v0.15.0 #99

Workflow file for this run

name: Docker Build
on: push
jobs:
build:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/clevyr/mailhog
clevyr/mailhog
tags: |
type=raw,priority=1000,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
type=ref,event=branch
type=sha
- name: Build and Push
uses: docker/build-push-action@v5
with:
pull: true
push: true
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
readme:
name: Update DockerHub Description
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}