Skip to content

chore(deps): update docker/build-push-action action to v6.14.0 (#619) #411

chore(deps): update docker/build-push-action action to v6.14.0 (#619)

chore(deps): update docker/build-push-action action to v6.14.0 (#619) #411

name: Build Anaconda3 amazonlinux Image
on:
push:
branches:
- main
tags:
- 'anaconda3-*'
paths:
- 'anaconda3/amazonlinux/Dockerfile'
- '.github/workflows/anaconda_amazonlinux_ci.yml'
pull_request:
paths:
- 'anaconda3/amazonlinux/Dockerfile'
- '.github/workflows/anaconda_amazonlinux_ci.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Login to DockerHub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
with:
# https://github.com/docker/setup-qemu-action/issues/188#issuecomment-2604322104
image: tonistiigi/binfmt:qemu-v8.1.5
platforms: linux/arm64/v8
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
with:
version: latest
driver-opts: network=host
- name: Docker meta
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
with:
images: |
continuumio/anaconda3
tags: |
type=ref,event=branch,suffix=-amazonlinux
type=ref,event=pr,suffix=-amazonlinux
type=match,pattern=anaconda3-(.*),group=1,suffix=-amazonlinux
flavor: |
latest=false
- name: build-push anaconda3/amazonlinux
uses: docker/build-push-action@0adf9959216b96bec444f325f1e493d4aa344497 # v6.14.0
with:
context: ./anaconda3/amazonlinux
builder: ${{ steps.buildx.outputs.name }}
file: ./anaconda3/amazonlinux/Dockerfile
platforms: linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') }}