Skip to content

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1 #310

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1 #310

Workflow file for this run

name: Docker CI
on:
pull_request:
branches: ["main", "release/**"]
paths:
["Dockerfile", "bin/**", "config/**", ".github/workflows/ci-docker.yml"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: blinklabs/cardano-node
permissions:
contents: read
jobs:
build:
strategy:
matrix:
arch: [amd64, arm64]
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 https://github.com/actions/checkout/releases/tag/v6.0.1
- uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1 https://github.com/docker/setup-buildx-action/releases/tag/v3.11.1
- id: meta
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0 https://github.com/docker/metadata-action/releases/tag/v5.10.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=false
suffix=-${{ matrix.arch == 'arm64' && 'arm64v8' || 'amd64' }}
- name: Build Docker image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 https://github.com/docker/build-push-action/releases/tag/v6.18.0
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha,scope=buildkit-${{ matrix.arch }}
cache-to: type=gha,mode=max,scope=buildkit-${{ matrix.arch }}