Skip to content

Commit

Permalink
chore: upgrade github actions versions for java 11 CI
Browse files Browse the repository at this point in the history
Signed-off-by: Maximillian Arruda <[email protected]>
  • Loading branch information
dearrudam committed Jan 5, 2025
1 parent 1ac8576 commit fa9f057
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/java-11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Generate JaCoCo badge
id: jacoco
uses: cicirello/jacoco-badge-generator@v2
uses: cicirello/jacoco-badge-generator@v2.11.0
with:
badges-directory: .github/badges
generate-branches-badge: true
Expand All @@ -63,14 +63,14 @@ jobs:
echo "(java-11) branches = ${{ steps.jacoco.outputs.branches }}"
- name: Upload JaCoCo coverage report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jacoco-report-java-11
path: target/site/jacoco/

- name: Deploy to Coverage Branch
if: ${{ github.event_name != 'pull_request' }}
uses: crazy-max/ghaction-github-pages@v3
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: coverage
build_dir: .github/badges
Expand Down

0 comments on commit fa9f057

Please sign in to comment.