@@ -27,13 +27,13 @@ jobs:
2727 runs-on : ${{ matrix.os }}
2828 steps :
2929 - name : Checkout current branch (full)
30- uses : actions/checkout@v4
30+ uses : actions/checkout@v6
3131 with :
3232 fetch-depth : 0
3333
3434 - name : Setup Java (temurin@11)
3535 if : matrix.java == 'temurin@11'
36- uses : actions/setup-java@v4
36+ uses : actions/setup-java@v5
3737 with :
3838 distribution : temurin
3939 java-version : 11
@@ -49,10 +49,10 @@ jobs:
4949 run : sbt '++ ${{ matrix.scala }}' test
5050
5151 - name : Compress target directories
52- run : tar cf targets.tar target modules/shacl/target modules/utilsTest/target project/target
52+ run : tar cf targets.tar target modules/shacl/target project/target
5353
5454 - name : Upload target directories
55- uses : actions/upload-artifact@v4
55+ uses : actions/upload-artifact@v7
5656 with :
5757 name : target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }}
5858 path : targets.tar
@@ -69,13 +69,13 @@ jobs:
6969 runs-on : ${{ matrix.os }}
7070 steps :
7171 - name : Checkout current branch (full)
72- uses : actions/checkout@v4
72+ uses : actions/checkout@v6
7373 with :
7474 fetch-depth : 0
7575
7676 - name : Setup Java (temurin@11)
7777 if : matrix.java == 'temurin@11'
78- uses : actions/setup-java@v4
78+ uses : actions/setup-java@v5
7979 with :
8080 distribution : temurin
8181 java-version : 11
8585 uses : sbt/setup-sbt@v1
8686
8787 - name : Download target directories (2.12.19)
88- uses : actions/download-artifact@v4
88+ uses : actions/download-artifact@v8
8989 with :
9090 name : target-${{ matrix.os }}-2.12.19-${{ matrix.java }}
9191
0 commit comments