diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8518eca --- /dev/null +++ b/.github/dependabot.yml @@ -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" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdbd8c4..ed0a145 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Java - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: "adopt" java-version: "11" @@ -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: | @@ -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: | diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8bd386d..2555a62 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: ############################################# tests: name: Tests - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: MODULE_ID: cbwire strategy: @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v2 - name: Setup Java - uses: actions/setup-java@v2 + uses: actions/setup-java@v5 with: distribution: "adopt" java-version: "11" @@ -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: ./ @@ -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