Skip to content

Commit 23d6458

Browse files
committed
Updated all gha according to new standards thanks to @michaelborn and @jclausen
1 parent 1aa7be6 commit 23d6458

File tree

5 files changed

+34
-14
lines changed

5 files changed

+34
-14
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
runs-on: ubuntu-20.04
2929
steps:
3030
- name: Checkout Repository
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3.2.0
3232
with:
3333
fetch-depth: 0
3434

3535
- name: Setup Java
36-
uses: actions/setup-java@v2
36+
uses: actions/setup-java@v3.9.0
3737
with:
38-
distribution: "adopt"
38+
distribution: "temurin"
3939
java-version: "11"
4040

4141
- name: Cache CommandBox Dependencies
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Upload Build Artifacts
7474
if: success()
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v3.1.1
7676
with:
7777
name: ${{ env.MODULE_ID }}
7878
path: |

.github/workflows/gh-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
create-release:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: taiki-e/create-gh-release-action@v1.5.0
13+
- uses: actions/checkout@v3.2.0
14+
- uses: taiki-e/create-gh-release-action@v1.6.1
1515
with:
1616
# Produced by the build/Build.cfc
1717
changelog: changelog.md

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-20.04
2121
steps:
2222
- name: Checkout Repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3.2.0
2424

2525
- uses: Ortus-Solutions/[email protected]
2626
with:

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
cfengine: [ "lucee@5", "adobe@2018", "adobe@2021" ]
2121
steps:
2222
- name: Checkout Repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3.2.0
2424

2525
- name: Setup Java
26-
uses: actions/setup-java@v2
26+
uses: actions/setup-java@v3.9.0
2727
with:
28-
distribution: "adopt"
28+
distribution: "temurin"
2929
java-version: "11"
3030

3131
- name: Setup CommandBox CLI
@@ -67,15 +67,15 @@ jobs:
6767
box testbox run --verbose outputFile=test-harness/tests/results/test-results outputFormats=json,antjunit
6868
6969
- name: Publish Test Results
70-
uses: EnricoMi/publish-unit-test-result-action@v1
70+
uses: EnricoMi/publish-unit-test-result-action@v2
7171
if: always()
7272
with:
73-
files: test-harness/tests/results/**/*.xml
73+
junit_files: test-harness/tests/results/**/*.xml
7474
check_name: "${{ matrix.cfengine }} Test Results"
7575

7676
- name: Upload Test Results to Artifacts
7777
if: always()
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v3.1.1
7979
with:
8080
name: test-results-${{ matrix.cfengine }}
8181
path: |
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Upload Debug Logs To Artifacts
9292
if: ${{ failure() }}
93-
uses: actions/upload-artifact@v2
93+
uses: actions/upload-artifact@v3.1.1
9494
with:
9595
name: Failure Debugging Info - ${{ matrix.cfengine }}
9696
path: |

changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
----
99

1010

11+
## [v2.7.0] => 2023-JAN-16
12+
13+
A big thanks to @richardherbert for all the updates in this release.
14+
15+
### Fixed
16+
17+
* FIXED var scoping of attachments variable
18+
* Updated to handle a response that is not JSON
19+
* 🐛 FIX: Update GHA to avoid deprecated syntax
20+
21+
### Added
22+
23+
* Added test for MAILGUN_BASEURL property
24+
* Updated to make MAILGUN_APIURL optional
25+
* Added support for Mailgun EU region by making MAILGUN_APIURL an optional property with https://api.mailgun.net/v3/ as the default.
26+
27+
28+
----
29+
30+
1131
## [v2.6.2] => 2022-DEC-20
1232

1333
### Fixed

0 commit comments

Comments
 (0)