Skip to content

Commit

Permalink
ci: upgrade github actions (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDombo authored Apr 4, 2024
1 parent 8743e53 commit 7e0dc50
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: corretto
java-version: 8
cache: maven
- name: Run Benchmarks
run: ./run-benchmarks.sh
working-directory: ./benchmark
- name: Upload Results
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3
with:
name: Benchmark Results
path: ./benchmark/jmh-result.json
Expand Down
17 changes: 10 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
- uses: wagoid/commitlint-github-action@v6
if: matrix.os == 'ubuntu-latest'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: corretto
java-version: 8
cache: maven
- name: Build with Maven (not Windows)
env:
AWS_REGION: us-west-2
Expand All @@ -35,13 +37,13 @@ jobs:
shell: cmd
if: matrix.os == 'windows-latest'
- name: Upload Failed Test Report
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3
if: failure()
with:
name: Failed Test Report
path: target/surefire-reports
- name: Upload Coverage
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v3
if: matrix.os == 'ubuntu-latest'
with:
name: Coverage Report ${{ matrix.os }}
Expand All @@ -51,7 +53,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
- name: cobertura-report-unit-test
if: matrix.os == 'ubuntu-latest'
uses: shaguptashaikh/cobertura-action@master
uses: 5monkeys/cobertura-action@v14
continue-on-error: true
with:
# The GITHUB_TOKEN for this repo
Expand All @@ -70,3 +72,4 @@ jobs:
show_class_names: true
# Use a unique name for the report and comment
report_name: Code Coverage Report
only_changed_files: true

0 comments on commit 7e0dc50

Please sign in to comment.