Skip to content

Commit

Permalink
updating actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
hvarg committed Dec 12, 2024
1 parent 5125935 commit 5f6891e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
packages: write

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: "8"
distribution: "temurin"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
java:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: "8"
distribution: "temurin"
Expand All @@ -48,7 +48,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- run: mkdir staging && cp server/target/*.war staging
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Package
path: staging
Expand All @@ -62,9 +62,9 @@ jobs:
name: "Build and push the Docker Image"

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

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: Package
path: build/
Expand Down

0 comments on commit 5f6891e

Please sign in to comment.