Skip to content

Commit

Permalink
Merge pull request #87 from michaelborn/development
Browse files Browse the repository at this point in the history
🐛 FIX: Update GHA dependencies to drop deprecated syntax
  • Loading branch information
jclausen authored Jan 14, 2025
2 parents be44368 + 45fc78f commit a1bb095
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3.2.0

- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3.9.0
with:
distribution: "adopt"
java-version: "11"

- name: Cache CommandBox Dependencies
uses: actions/cache@v1
uses: actions/cache@v3
if: ${{ true }}
with:
path: ~/.CommandBox/artifacts
Expand Down Expand Up @@ -67,15 +67,15 @@ jobs:
box testbox run --verbose outputFile=tests/results/test-results outputFormats=json,antjunit
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: test-harness/tests/results/**/*.xml
junit_files: test-harness/tests/results/**/*.xml
check_name: "${{ matrix.cfengine }} Test Results"

- name: Upload Test Results Artifacts
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.1
with:
name: test-results-${{ matrix.cfengine }}
path: |
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Upload Debugging Info To Artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.1
with:
name: Failure Debugging Info - ${{ matrix.cfengine }}
path: |
Expand All @@ -117,18 +117,18 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3.2.0
with:
fetch-depth: 0

- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3.9.0
with:
distribution: "adopt"
java-version: "11"

- name: Cache CommandBox Dependencies
uses: actions/cache@v1
uses: actions/cache@v3
if: ${{ true }}
with:
path: ~/.CommandBox/artifacts
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Upload Build Artifacts
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.1
with:
name: ${{ env.MODULE_ID }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3.2.0

- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3.9.0
with:
distribution: "adopt"
java-version: "11"
Expand Down Expand Up @@ -75,10 +75,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3.2.0

- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3.9.0
with:
distribution: "adopt"
java-version: "11"
Expand Down

0 comments on commit a1bb095

Please sign in to comment.