From 926f731e1ad9ae6dc813cb7a277c6376e82b79e2 Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Fri, 27 Jun 2025 11:29:30 -0500 Subject: [PATCH 1/4] Create dependabot.yml --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml 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" From 4597abab02b2d5e7a6a2c8d65e5579343d4c4fdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 16:31:09 +0000 Subject: [PATCH 2/4] Bump elpete/setup-commandbox from 1.0.0 to 1.0.1 Bumps [elpete/setup-commandbox](https://github.com/elpete/setup-commandbox) from 1.0.0 to 1.0.1. - [Release notes](https://github.com/elpete/setup-commandbox/releases) - [Commits](https://github.com/elpete/setup-commandbox/compare/v1.0.0...v1.0.1) --- updated-dependencies: - dependency-name: elpete/setup-commandbox dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdbd8c4..33f7eab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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..9e9ca90 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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: ./ From ead5e40c4ca389c72cf1aed18f209b01bc45bcf0 Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Fri, 27 Jun 2025 11:46:39 -0500 Subject: [PATCH 3/4] Update workflow to use ubuntu-latest --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8bd386d..63da1e2 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: @@ -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 From 0a1ab5fe91c602470ce263d5315bf91c2bd6199a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 13:14:18 +0000 Subject: [PATCH 4/4] Bump actions/setup-java from 2 to 5 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33f7eab..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" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2370a63..2555a62 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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"