forked from ColdBox/coldbox-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
275 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
name: Code Auto-Formatting | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Auto-format | ||
uses: Ortus-Solutions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3.2.0 | ||
uses: actions/checkout@v4.2.0 | ||
|
||
- uses: Ortus-Solutions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,10 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: "temurin" | ||
java-version: "11" | ||
|
@@ -88,7 +88,7 @@ jobs: | |
box task run build/Build.cfc run ${{ env.COLDBOX_VERSION }} ${{ github.run_number }} ${{ env.BRANCH }} | ||
- name: Commit Changelog [unreleased] with latest version | ||
uses: EndBug/[email protected].1 | ||
uses: EndBug/[email protected].4 | ||
if: env.SNAPSHOT == 'false' | ||
with: | ||
author_name: Github Actions | ||
|
@@ -97,7 +97,7 @@ jobs: | |
add: changelog.md | ||
|
||
- name: Tag Version | ||
uses: rickstaa/action-create-tag@v1.6.1 | ||
uses: rickstaa/action-create-tag@v1.7.2 | ||
if: env.SNAPSHOT == 'false' | ||
with: | ||
tag: "v${{ env.COLDBOX_VERSION }}" | ||
|
@@ -106,9 +106,8 @@ jobs: | |
|
||
- name: Upload Build Artifacts | ||
if: success() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coldbox-variants | ||
path: | | ||
.artifacts/**/* | ||
changelog.md | ||
|
@@ -144,7 +143,7 @@ jobs: | |
cd $ROOT_DIR/.artifacts/logbox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
- name: Create Github Release | ||
uses: taiki-e/create-gh-release-action@v1.6.2 | ||
uses: taiki-e/create-gh-release-action@v1.8.0 | ||
continue-on-error: true | ||
if: env.SNAPSHOT == 'false' | ||
with: | ||
|
@@ -175,13 +174,13 @@ jobs: | |
needs: [ build ] | ||
steps: | ||
- name: Checkout Development Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
if: env.LTS == 'false' | ||
with: | ||
ref: development | ||
|
||
- name: Checkout LTS Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
if: env.LTS == 'true' | ||
|
||
- name: Setup CommandBox | ||
|
@@ -190,9 +189,8 @@ jobs: | |
forgeboxAPIKey: ${{ secrets.FORGEBOX_TOKEN }} | ||
|
||
- name: Download build artifacts | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: coldbox-variants | ||
path: .tmp | ||
|
||
- name: Copy Changelog | ||
|
@@ -210,7 +208,7 @@ jobs: | |
git pull | ||
- name: Commit Version Bump | ||
uses: EndBug/[email protected].1 | ||
uses: EndBug/[email protected].4 | ||
with: | ||
author_name: Github Actions | ||
author_email: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,11 @@ on: | |
branches: | ||
- development | ||
|
||
# Unique group name per workflow-branch/tag combo | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
############################################# | ||
# Tests First baby! We fail, no build :( | ||
|
@@ -22,7 +27,7 @@ jobs: | |
name: Code Auto-Formatting | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Auto-format | ||
uses: Ortus-Solutions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name":"ColdBox Platform", | ||
"version":"7.2.1", | ||
"version":"7.3.0", | ||
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox/@build.version@/[email protected]@.zip", | ||
"author":"Ortus Solutions <[email protected]>", | ||
"slug":"coldbox", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.