Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
minoneer authored Jun 18, 2024
1 parent 184aa3d commit 6ce134b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 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
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

name: Java CI with Maven

Expand All @@ -18,17 +18,17 @@ jobs:
packages: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: maven-settings
uses: s4u/maven-settings-action@v2
uses: s4u/maven-settings-action@v3
with:
servers: '[{"id": "kconfig", "username": "github", "password": "${GITHUB_TOKEN_REF}"}]'
githubServer: false
Expand All @@ -39,7 +39,7 @@ jobs:
GITHUB_TOKEN_REF: ${{ secrets.GH_PAT_FOR_ACTIONS_TOKEN }}

- name: Upload plugin artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: EndlessDispense
path: target/EndlessDispense.jar

0 comments on commit 6ce134b

Please sign in to comment.