Skip to content

Bump docker/build-push-action from 4.1.1 to 6.8.0 #82

Bump docker/build-push-action from 4.1.1 to 6.8.0

Bump docker/build-push-action from 4.1.1 to 6.8.0 #82

Workflow file for this run

name: Build Docker images
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
versions: [8, 11, 17, 21]
type: [jdk, jre]
os: [alpine, debian]
env:
repo: "govpf/openjdk"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Build and push debian
uses: docker/[email protected]
with:
context: .
file: ./${{ matrix.versions }}/${{ matrix.type }}/${{ matrix.os }}/Dockerfile
platforms: linux/amd64
pull: true
push: false
tags: |
${{ env.repo }}:${{ matrix.versions }}-${{ matrix.type }}-${{ matrix.os }}