Skip to content

Commit 8b4fde7

Browse files
committed
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent 5ef7d8c commit 8b4fde7

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -85,7 +85,7 @@ jobs:
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

.github/workflows/clean.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ name: Clean
99

1010
on: push
1111

12+
permissions:
13+
actions: write
14+
1215
jobs:
1316
delete-artifacts:
1417
name: Delete Artifacts

0 commit comments

Comments
 (0)