Skip to content

Commit ab767c0

Browse files
committed
fix and modernize GitHub Actions config
1 parent 92a918c commit ab767c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: test
22
on:
33
push:
44
branches:
5-
- main
5+
- 2.13.x
66
pull_request:
77
jobs:
88
test:
99
strategy:
1010
fail-fast: false
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- uses: coursier/cache-action@v6
15-
- uses: actions/setup-java@v2
15+
- uses: actions/setup-java@v3
1616
with:
1717
distribution: temurin
1818
java-version: 8
1919
- name: Test
2020
# This runs the template with the default parameters, and runs test within the templated app.
21-
run: sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M test
21+
run: sbt -Dfile.encoding=UTF8 test

0 commit comments

Comments
 (0)