Bump docker/setup-buildx-action from 3.3.0 to 3.6.1 #108
Workflow file for this run
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 Docker images | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
versions: [3.6,3.9] | |
env: | |
repo: "govpf/python" | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build and push | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: ./${{ matrix.versions }}/Dockerfile | |
platforms: linux/amd64 | |
pull: true | |
push: false | |
tags: | | |
${{ env.repo }}:${{ matrix.versions }} |