We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516e9af commit 284ac22Copy full SHA for 284ac22
1 file changed
.github/workflows/main.yml
@@ -14,11 +14,8 @@ jobs:
14
PATH: ${{ github.workspace }}/graalvm-community-openjdk-17.0.9+9.1/bin:$PATH
15
16
steps:
17
- - name: Install tar (if necessary)
18
- run: apt-get update && apt-get install -y tar
19
-
20
- name: Check out code
21
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
22
23
- name: Set up JDK 17 from GraalVM
24
run: |
@@ -34,7 +31,7 @@ jobs:
34
31
run: ./gradlew clean fatJar nativeCompile
35
32
36
33
- name: Publish Jar to GitHub Packages
37
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
38
with:
39
name: codeanalyzer.jar
40
path: build/libs/*.jar
@@ -52,7 +49,7 @@ jobs:
52
49
prerelease: false
53
50
54
51
- name: Upload Release Asset
55
- uses: actions/upload-release-asset@v1
+ uses: softprops/action-gh-release@v2
56
env:
57
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
0 commit comments