Skip to content
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
# GitHub Actions - updates uses: statements in workflows
- package-ecosystem: "github-actions"
directory: "/" # Where your .github/workflows/ folder is
schedule:
interval: "weekly"

# NPM
- package-ecosystem: "npm"
directory: "/system/exceptions" # adjust if needed
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
${{ runner.OS }}-commandbox-cache-${{ hashFiles( 'box.json' ) }}-${{ hashFiles( 'test-harness/box.json' ) }}

- name: Setup CommandBox
uses: elpete/setup-commandbox@v1.0.0
uses: elpete/setup-commandbox@v1.0.1

- name: Setup env.VERSION
run: |
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup CommandBox
uses: elpete/setup-commandbox@v1.0.0
uses: elpete/setup-commandbox@v1.0.1

- name: Generate Docs
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
#############################################
tests:
name: Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
MODULE_ID: cbwire
strategy:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
#printf "DB_BUNDLENAME=com.mysql.cj\n" >> test-harness/.env

- name: Setup CommandBox
uses: elpete/setup-commandbox@v1.0.0
uses: elpete/setup-commandbox@v1.0.1

- name: Install Main Dependencies
working-directory: ./
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

format:
name: Format
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down
Loading