Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.4.0 #155

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.4.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.4.0 #155

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: environment-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
cache: 'maven'
- name: Build and test with Maven
run: mvn --batch-mode --update-snapshots verify
- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
env:
GITHUB_TOKEN: ${{ github.token }}
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
- name: Publish to GitHub Container Registry
run: mvn jib:build
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'