Skip to content

Commit

Permalink
update supporting github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 10, 2024
1 parent 9e46a09 commit 607653c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ 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].2
uses: Ortus-Solutions/[email protected].3
with:
cmd: run-script format

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3.2.0
uses: actions/checkout@v4

- uses: Ortus-Solutions/[email protected].2
- uses: Ortus-Solutions/[email protected].3
with:
cmd: run-script format:check
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ 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
Expand Down Expand Up @@ -183,13 +183,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
Expand All @@ -198,7 +198,7 @@ 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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ 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].2
uses: Ortus-Solutions/[email protected].3
with:
cmd: run-script format

Expand Down
6 changes: 4 additions & 2 deletions .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
},
"no-duplicate-header" : {
"siblings_only" : true
}
}
},
"no-duplicate-heading" : false,
"no-inline-html" : false
}

0 comments on commit 607653c

Please sign in to comment.