Skip to content

Commit 6111543

Browse files
committed
Update CI to include JDK 21, dependabot updates for actions
1 parent c100cc6 commit 6111543

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
github-actions:
9+
patterns:
10+
- "*"

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
java_version: ['8', '11', '17']
25+
java_version: ['8', '11', '17', '21']
2626
os: ['ubuntu-20.04']
2727
env:
2828
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2929
steps:
30-
- uses: actions/[email protected].0
30+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3131
- name: Set up JDK
32-
uses: actions/setup-java@v3
32+
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
3333
with:
3434
distribution: 'temurin'
3535
java-version: ${{ matrix.java_version }}
@@ -57,7 +57,7 @@ jobs:
5757
run: ./mvnw -B -q -ff -ntp test
5858
- name: Publish code coverage
5959
if: github.event_name != 'pull_request' && matrix.java_version == '8'
60-
uses: codecov/codecov-action@v1
60+
uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1
6161
with:
6262
token: ${{ secrets.CODECOV_TOKEN }}
6363
file: ./target/site/jacoco/jacoco.xml

0 commit comments

Comments
 (0)