Skip to content

Commit 8ea3ecd

Browse files
committed
Update CI with latest versions
1 parent a603f3b commit 8ea3ecd

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
contents: read
1717
packages: write
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Set up JDK 11
21-
uses: actions/setup-java@v2
21+
uses: actions/setup-java@v4
2222
with:
2323
java-version: '11'
2424
distribution: 'temurin'
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build with Maven
2828
run: mvn clean package -DskipTests=true -DgeneratePom=false -DbuildNumber=-${{ github.run_number }}
2929
- name: Upload artifacts
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: ServerSigns-${{ github.run_number }}
3333
path: target/ServerSigns-*.jar

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
contents: write
1515
packages: write
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Set up JDK 11
19-
uses: actions/setup-java@v2
19+
uses: actions/setup-java@v4
2020
with:
2121
java-version: '11'
2222
distribution: 'temurin'
@@ -25,12 +25,12 @@ jobs:
2525
- name: Build with Maven
2626
run: mvn clean package -DskipTests=true -DgeneratePom=false
2727
- name: Upload artifacts
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: ServerSigns
3131
path: target/ServerSigns-*.jar
3232
- name: Release
33-
uses: softprops/action-gh-release@v1
33+
uses: softprops/action-gh-release@v2
3434
if: startsWith(github.ref, 'refs/tags/')
3535
with:
3636
draft: true

0 commit comments

Comments
 (0)