Skip to content

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

chore(deps): update docker/build-push-action action to v6.5.0

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

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # v3.1.0
with:
platforms: linux/arm64/v8
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3.4.0
with:
version: latest
driver-opts: network=host
- name: Docker meta
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.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@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.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') }}