build(deps): bump org.junit:junit-bom from 5.10.3 to 6.0.0 #233
This file contains hidden or 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: docker pr | |
on: | |
workflow_dispatch: | |
push: | |
env: | |
IMAGE_FQDN: ghcr.io/jeremylong/open-vulnerability-data-mirror | |
VERSION: 0.0.0-SNAPSHOT | |
jobs: | |
docker-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v5 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Run build | |
run: ./gradlew -x test -Pversion=${{ env.VERSION }} build | |
- name: Build docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: false | |
tags: | | |
${{ env.IMAGE_FQDN }}:${{ env.VERSION }} | |
build-args: | | |
BUILD_VERSION=${{ env.VERSION }} |