Skip to content

Commit

Permalink
Testing with Maven 3.9.6?
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 20, 2023
1 parent 5a85c61 commit 607baa0
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/push-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,24 @@ on:
- 'issue-*'

jobs:
update-site:
name: Linux
build:
runs-on: ubuntu-latest
container:
image: docker://maven/eclipse-temurin-21-alpine
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: 'Build with Maven'

- uses: actions/checkout@v3
name: "Checking out."

- uses: actions/setup-java@v4
with:
java-version: 21
distribution: "temurin"
cache: maven

- name: Set up Maven
uses: hb0730/maven-action@latest
with:
maven-version: 3.9.6
maven-file: ${{ runner.temp }}/apache-maven-3.9.6-bin.tar.gz
url: https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.tar.gz
- name: "Building with Maven."
run: mvn verify -e -B -V --no-transfer-progress

0 comments on commit 607baa0

Please sign in to comment.