Update github action versions (#1215)

pull/1216/head jitsi-meet_10182
Jonathan Lennox 8 months ago committed by GitHub
parent 0d09305371
commit 9ff3feb00d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      .github/workflows/maven.yml

@ -11,7 +11,7 @@ on:
env:
# Java version to use for the release
RELEASE_JAVA_VERSION: 8
RELEASE_JAVA_VERSION: 11
jobs:
build:
@ -25,10 +25,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
@ -38,4 +38,6 @@ jobs:
run: mvn verify -B -Pcoverage
- name: Upload coverage report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

Loading…
Cancel
Save