chore(deps): update docker/setup-qemu-action action to v3.2.0 (#544) #402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Miniconda3 Debian Image | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'miniconda3-v*.*.*' | |
paths: | |
- 'miniconda3/debian/Dockerfile' | |
- '.github/workflows/miniconda_debian_ci.yml' | |
pull_request: | |
paths: | |
- 'miniconda3/debian/Dockerfile' | |
- '.github/workflows/miniconda_debian_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@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | |
with: | |
platforms: linux/amd64,linux/arm64,linux/s390x | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@aa33708b10e362ff993539393ff100fa93ed6a27 # v3.5.0 | |
with: | |
version: latest | |
driver-opts: network=host | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | |
with: | |
images: continuumio/miniconda3 | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=match,pattern=miniconda3-v(.*),group=1 | |
- name: build miniconda3/debian | |
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.0 | |
with: | |
context: ./miniconda3/debian | |
builder: ${{ steps.buildx.outputs.name }} | |
file: ./miniconda3/debian/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64,linux/s390x | |
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') }} |