From 3c2577ffe59c8bce6c5902c7c34002f552a2c7dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 18:26:05 +0000 Subject: [PATCH 1/2] Bump softprops/action-gh-release from 1 to 2 Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8d9b30..6f24c02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: TAG_NAME: v${{ steps.version-metadata.outputs.newVersion }} - name: Create release if: steps.version-metadata.outputs.changed == 'true' - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: generate_release_notes: true tag_name: v${{ steps.version-metadata.outputs.newVersion }} From b116fa7d0e7bfb3eff44d269ac20d0946b69cd8f Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 5 Apr 2024 13:09:29 +0200 Subject: [PATCH 2/2] Pin version, update dependabot configuration --- .github/dependabot.yml | 10 ++++++---- .github/workflows/release.yml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f395b8a..dd0e163 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,13 +4,15 @@ updates: directory: / schedule: interval: monthly + groups: + actions: + patterns: + - "*" - package-ecosystem: npm directory: / schedule: interval: monthly groups: - dev-dependencies: + node: patterns: - - "*eslint*" - - "@types/*" - - "prettier" + - "*" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f24c02..aa24d51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: TAG_NAME: v${{ steps.version-metadata.outputs.newVersion }} - name: Create release if: steps.version-metadata.outputs.changed == 'true' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 with: generate_release_notes: true tag_name: v${{ steps.version-metadata.outputs.newVersion }}