Skip to content

Commit

Permalink
update GHA actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Apr 21, 2024
1 parent 60f07b0 commit d95e1f7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/osv-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '21'
distribution: 'adopt'
- name: Build Lucee without using a Maven cache
run: ant -noinput -buildfile loader/build.xml fast
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test-case-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
java-version: '21'
distribution: 'adopt'
- name: Cache Lucee extensions
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/work/Lucee/Lucee/cache/
key: lucee-extensions
restore-keys: lucee-extensions
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.m2/repository/*
Expand Down

0 comments on commit d95e1f7

Please sign in to comment.