diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 68b3502cb..86c802c15 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -19,7 +19,7 @@ "actions/setup-jrsonnet": "1.0.2", "actions/find-pr-for-commit": "1.0.1", "actions/remove-checkout-credentials": "0.1.0", - "actions/dependabot-auto-triage": "1.1.1", + "actions/dependabot-auto-triage": "1.1.2", "actions/get-latest-workflow-artifact": "0.2.0", "actions/create-github-app-token": "0.2.2", "actions/run-capslock": "0.2.0", diff --git a/actions/dependabot-auto-triage/CHANGELOG.md b/actions/dependabot-auto-triage/CHANGELOG.md index 25c2752ce..1751f1c8a 100644 --- a/actions/dependabot-auto-triage/CHANGELOG.md +++ b/actions/dependabot-auto-triage/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.1.2](https://github.com/grafana/shared-workflows/compare/dependabot-auto-triage/v1.1.1...dependabot-auto-triage/v1.1.2) (2025-12-11) + + +### 🐛 Bug Fixes + +* **deps:** update dependency @octokit/request-error to v7.1.0 ([#1539](https://github.com/grafana/shared-workflows/issues/1539)) ([9d49abe](https://github.com/grafana/shared-workflows/commit/9d49abed0c85b524b7c019797bdabb4b6caf28c4)) + + +### 🔧 Miscellaneous Chores + +* **deps:** update dependency @types/bun to v1.3.3 ([#1571](https://github.com/grafana/shared-workflows/issues/1571)) ([f7987ba](https://github.com/grafana/shared-workflows/commit/f7987ba378e8968ad5796f1dd473e2e5b14de2b0)) +* **deps:** update dependency @types/bun to v1.3.4 ([#1608](https://github.com/grafana/shared-workflows/issues/1608)) ([91d2350](https://github.com/grafana/shared-workflows/commit/91d235037be4cfd3cc65f7c19448ec6a2798cf25)) +* **deps:** update dependency eslint-plugin-jest to v29.1.0 ([#1530](https://github.com/grafana/shared-workflows/issues/1530)) ([cacf689](https://github.com/grafana/shared-workflows/commit/cacf68955667cbdc1da18b1b96e25a524b6512ad)) +* **deps:** update dependency eslint-plugin-jest to v29.2.0 ([#1566](https://github.com/grafana/shared-workflows/issues/1566)) ([485d19c](https://github.com/grafana/shared-workflows/commit/485d19c356ff9633a37332933be79cbb26744575)) +* **deps:** update dependency eslint-plugin-jest to v29.2.1 ([#1574](https://github.com/grafana/shared-workflows/issues/1574)) ([b055806](https://github.com/grafana/shared-workflows/commit/b055806fd663fd698094c1477d00fb45942597f6)) +* **deps:** update dependency typescript-eslint to v8.46.4 ([#1529](https://github.com/grafana/shared-workflows/issues/1529)) ([6829790](https://github.com/grafana/shared-workflows/commit/682979042d7b756583863955d8f6286f8b37f126)) +* **deps:** update dependency typescript-eslint to v8.47.0 ([#1554](https://github.com/grafana/shared-workflows/issues/1554)) ([8c7b10b](https://github.com/grafana/shared-workflows/commit/8c7b10b1b2fb4ad04a00b9f8d5133e7933cda52c)) +* **deps:** update dependency typescript-eslint to v8.48.0 ([#1578](https://github.com/grafana/shared-workflows/issues/1578)) ([fb10504](https://github.com/grafana/shared-workflows/commit/fb10504c7d07de7e9dba6b2ea6e5f0e50e7f59c4)) +* **deps:** update dependency typescript-eslint to v8.48.1 ([#1592](https://github.com/grafana/shared-workflows/issues/1592)) ([923742f](https://github.com/grafana/shared-workflows/commit/923742f26a9e3cab74482036097bbdd0b22ad0fd)) + ## [1.1.1](https://github.com/grafana/shared-workflows/compare/dependabot-auto-triage/v1.1.0...dependabot-auto-triage/v1.1.1) (2025-11-11) diff --git a/actions/dependabot-auto-triage/README.md b/actions/dependabot-auto-triage/README.md index 99bb4843f..24495e039 100644 --- a/actions/dependabot-auto-triage/README.md +++ b/actions/dependabot-auto-triage/README.md @@ -31,12 +31,12 @@ jobs: contents: read steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v1.1.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v1.1.2 # Get GitHub App token with Dependabot alerts permissions - name: Retrieve GitHub App secrets id: get-secrets - uses: grafana/shared-workflows/actions/get-vault-secrets@get-vault-secrets/v1.1.1 + uses: grafana/shared-workflows/actions/get-vault-secrets@get-vault-secrets/v1.1.2 with: common_secrets: | DEPENDABOT_AUTO_TRIAGE_APP_ID=dependabot-auto-triage:app-id @@ -44,14 +44,14 @@ jobs: - name: Generate token id: generate-token - uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v1.1.1 + uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v1.1.2 with: app-id: ${{ env.DEPENDABOT_AUTO_TRIAGE_APP_ID }} private-key: ${{ env.DEPENDABOT_AUTO_TRIAGE_APP_PRIVATE_KEY }} # Use the token with the auto-triage action - name: Auto Dismiss Dependabot Alerts - uses: grafana/shared-workflows/actions/dependabot-auto-triage@dependabot-auto-triage/v1.1.1 + uses: grafana/shared-workflows/actions/dependabot-auto-triage@dependabot-auto-triage/v1.1.2 with: token: ${{ steps.generate-token.outputs.token }} paths: |