Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lucee/extension-redis
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Nov 28, 2022
2 parents 10f6d5f + 726a423 commit e03661c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:
# Maps port 6379 on service container to the host
- 6379:6379
env:
luceeVersion: light-6.0.0.202-SNAPSHOT
luceeVersion: light-6.0.0.300-SNAPSHOT

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: lucee-script-runner-maven-cache
- name: Cache Lucee files
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: _actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads-${{ env.luceeVersion }}
Expand All @@ -47,12 +47,12 @@ jobs:
- name: Build with Ant
run: ant -noinput -verbose -buildfile build.xml
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: redis-lex
path: dist/*.lex
- name: Checkout Lucee
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: lucee/lucee
path: lucee
Expand Down

0 comments on commit e03661c

Please sign in to comment.