Skip to content

Commit af5709e

Browse files
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent 1d771c6 commit af5709e

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,21 @@ jobs:
3030
runs-on: ${{ matrix.os }}
3131
steps:
3232
- name: Checkout current branch (full)
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434
with:
3535
fetch-depth: 0
3636

3737
- name: Setup Java (temurin@11)
3838
if: matrix.java == 'temurin@11'
39-
uses: actions/setup-java@v4
39+
uses: actions/setup-java@v5
4040
with:
4141
distribution: temurin
4242
java-version: 11
4343
cache: sbt
4444

45+
- name: Setup sbt
46+
uses: sbt/setup-sbt@v1
47+
4548
- name: 'Linter: Scalafix checks'
4649
run: sbt '++ ${{ matrix.scala }}' 'scalafixAll --check'
4750

@@ -91,20 +94,23 @@ jobs:
9194
runs-on: ${{ matrix.os }}
9295
steps:
9396
- name: Checkout current branch (full)
94-
uses: actions/checkout@v4
97+
uses: actions/checkout@v5
9598
with:
9699
fetch-depth: 0
97100

98101
- name: Setup Java (temurin@11)
99102
if: matrix.java == 'temurin@11'
100-
uses: actions/setup-java@v4
103+
uses: actions/setup-java@v5
101104
with:
102105
distribution: temurin
103106
java-version: 11
104107
cache: sbt
105108

109+
- name: Setup sbt
110+
uses: sbt/setup-sbt@v1
111+
106112
- name: Download target directories (2.13.13)
107-
uses: actions/download-artifact@v4
113+
uses: actions/download-artifact@v5
108114
with:
109115
name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }}
110116

.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)