Skip to content

Commit

Permalink
[BUILD] upgrade GitHub actions because old versions no longer work re…
Browse files Browse the repository at this point in the history
…liably (#39)


Contributed by PJ Fanning
  • Loading branch information
pjfanning authored Sep 25, 2024
1 parent faa8afc commit 95fb8f3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
distribution: 'temurin'
- name: Build with Maven
run: mvn install

8 changes: 4 additions & 4 deletions .github/workflows/dependency_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
distribution: 'temurin'
- name: Dependency check with Maven
run: mvn dependency-check:aggregate
- name: Upload the report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dependency-check-report
path: "**/target/dependency-check-report.html"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
distribution: 'temurin'
- name: License check with Maven
run: mvn apache-rat:check
- name: Upload the report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: license-check-report
path: "**/target/rat.txt"
Expand Down

0 comments on commit 95fb8f3

Please sign in to comment.