From 649f7fe0188841a2c7813417bd0c5842bd092667 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 01:23:57 +0000 Subject: [PATCH 1/2] Bump org.sonatype.central:central-publishing-maven-plugin Bumps the maven-plugins group with 1 update: [org.sonatype.central:central-publishing-maven-plugin](https://github.com/sonatype/central-publishing-maven-plugin). Updates `org.sonatype.central:central-publishing-maven-plugin` from 0.7.0 to 0.8.0 - [Commits](https://github.com/sonatype/central-publishing-maven-plugin/commits) --- updated-dependencies: - dependency-name: org.sonatype.central:central-publishing-maven-plugin dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: maven-plugins ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7282c6e..d7b5ef9 100644 --- a/pom.xml +++ b/pom.xml @@ -328,7 +328,7 @@ org.sonatype.central central-publishing-maven-plugin - 0.7.0 + 0.8.0 true central From 17e345bb72f122b8a33827a50064cd9f86b97eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20G=C3=A4rdebrand?= Date: Tue, 24 Jun 2025 11:12:58 +0200 Subject: [PATCH 2/2] Add changesets to Dependabot updates --- .github/workflows/dependabot-changesets.yml | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/dependabot-changesets.yml diff --git a/.github/workflows/dependabot-changesets.yml b/.github/workflows/dependabot-changesets.yml new file mode 100644 index 0000000..c3efc07 --- /dev/null +++ b/.github/workflows/dependabot-changesets.yml @@ -0,0 +1,25 @@ +# Enable auto-merge for Dependabot PRs for minor and patch +# Based off of https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request +name: Create changesets for Dependabot +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'FortnoxAB/changesets-java' + steps: + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2 + with: + skip-verification: true + - name: Debug + shell: bash + run: | + echo "dependency-names: ${{ steps.dependabot-metadata.outputs.dependency-names }}" + echo "new-version: ${{ steps.dependabot-metadata.outputs.new-version }}" + echo "${{ toJSON(steps.metadata.outputs) }}"