Skip to content

Commit

Permalink
ci: bump v3 actions to v4 (#1316)
Browse files Browse the repository at this point in the history
Signed-off-by: TTtie <[email protected]>
  • Loading branch information
TTtie authored May 7, 2024
1 parent 85913f2 commit c5cbdb3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: setup-java
name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: temurin
Expand All @@ -23,7 +23,7 @@ jobs:
run: mvn install
- id: artifact
name: Upload Jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PGM.jar
path: target/PGM.jar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: setup-java
name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: temurin
Expand All @@ -28,7 +28,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- id: artifact
name: Upload Jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PGM.jar
path: target/PGM.jar
Expand Down

0 comments on commit c5cbdb3

Please sign in to comment.