Skip to content

chore(deps): bump golang.org/x/crypto from 0.42.0 to 0.45.0 in /hyper… #18

chore(deps): bump golang.org/x/crypto from 0.42.0 to 0.45.0 in /hyper…

chore(deps): bump golang.org/x/crypto from 0.42.0 to 0.45.0 in /hyper… #18

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches: [ main ]
paths:
- '**/Dockerfile'
- '.github/workflows/docker.yml'
- 'hyperlane/**'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write # Required for pushing to GHCR
steps:
- name: Checkout source
uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./hyperlane/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/${{ github.repository_owner }}/hyperlane-init:latest