From 1a5a2a97439dcf6067ced98f969e3e7a64fc5d54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 20:23:01 +0000 Subject: [PATCH] GitHub Action: Bump the all-actions-dependencies group across 1 directory with 5 updates Bumps the all-actions-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `2` | `3` | | [redhat-plumbers-in-action/advanced-issue-labeler](https://github.com/redhat-plumbers-in-action/advanced-issue-labeler) | `2` | `3` | | [actions/labeler](https://github.com/actions/labeler) | `6.0.1` | `6.1.0` | | [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) | `6.2.0` | `7.3.0` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v2...v3) Updates `redhat-plumbers-in-action/advanced-issue-labeler` from 2 to 3 - [Release notes](https://github.com/redhat-plumbers-in-action/advanced-issue-labeler/releases) - [Commits](https://github.com/redhat-plumbers-in-action/advanced-issue-labeler/compare/v2...v3) Updates `actions/labeler` from 6.0.1 to 6.1.0 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v6.0.1...v6.1.0) Updates `release-drafter/release-drafter` from 6.2.0 to 7.3.0 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v6.2.0...v7.3.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies - dependency-name: redhat-plumbers-in-action/advanced-issue-labeler dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies - dependency-name: actions/labeler dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions-dependencies - dependency-name: release-drafter/release-drafter dependency-version: 7.3.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/CodeQl.yml | 2 +- .github/workflows/IssueTriager.yml | 2 +- .github/workflows/Labeler.yml | 2 +- .github/workflows/ReleaseDrafter.yml | 6 +++--- .github/workflows/Stale.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CodeQl.yml b/.github/workflows/CodeQl.yml index 0d99e6ad..5383713e 100644 --- a/.github/workflows/CodeQl.yml +++ b/.github/workflows/CodeQl.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@v6 - name: Setup Python Version - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python_version }} diff --git a/.github/workflows/IssueTriager.yml b/.github/workflows/IssueTriager.yml index 6ca1c55f..72fd5e96 100644 --- a/.github/workflows/IssueTriager.yml +++ b/.github/workflows/IssueTriager.yml @@ -44,7 +44,7 @@ jobs: template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }} - name: Apply Labels from Triage - uses: redhat-plumbers-in-action/advanced-issue-labeler@v2 + uses: redhat-plumbers-in-action/advanced-issue-labeler@v3 with: issue-form: ${{ steps.issue-parser.outputs.jsonString }} template: ${{ matrix.template }} diff --git a/.github/workflows/Labeler.yml b/.github/workflows/Labeler.yml index 397a5d56..a1fec817 100644 --- a/.github/workflows/Labeler.yml +++ b/.github/workflows/Labeler.yml @@ -42,7 +42,7 @@ jobs: owner: ${{ github.repository_owner }} - name: Apply Labels Based on PR File Paths - uses: actions/labeler@v6.0.1 + uses: actions/labeler@v6.1.0 with: configuration-path: .github/workflows/label-issues/file-paths.yml repo-token: ${{ steps.app-token.outputs.token }} diff --git a/.github/workflows/ReleaseDrafter.yml b/.github/workflows/ReleaseDrafter.yml index 0258630d..1c2bfc93 100644 --- a/.github/workflows/ReleaseDrafter.yml +++ b/.github/workflows/ReleaseDrafter.yml @@ -80,7 +80,7 @@ jobs: - name: Build a ${{ env.latest_mu_branch }} Draft if: ${{ startsWith(github.ref, env.latest_mu_branch_full) }} id: update_draft_n - uses: release-drafter/release-drafter@v6.2.0 + uses: release-drafter/release-drafter@v7.3.0 with: # Note: Path is relative to .github/ config-name: release-draft-config-n.yml @@ -89,7 +89,7 @@ jobs: - name: Build a ${{ env.previous_mu_branch }} Draft if: ${{ startsWith(github.ref, env.previous_mu_branch_full) }} id: update_draft_n_1 - uses: release-drafter/release-drafter@v6.2.0 + uses: release-drafter/release-drafter@v7.3.0 with: # Note: Path is relative to .github/ config-name: release-draft-config-n-1.yml @@ -98,7 +98,7 @@ jobs: - name: Build the New Release Draft if: ${{ !startsWith(github.ref, 'refs/heads/release') }} id: update_draft_non_release - uses: release-drafter/release-drafter@v6.2.0 + uses: release-drafter/release-drafter@v7.3.0 with: # Note: Path is relative to .github/ config-name: release-draft-config.yml diff --git a/.github/workflows/Stale.yml b/.github/workflows/Stale.yml index 3c739e60..eb33b2d2 100644 --- a/.github/workflows/Stale.yml +++ b/.github/workflows/Stale.yml @@ -75,7 +75,7 @@ jobs: steps: - name: Generate Token id: app-token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ vars.MU_ACCESS_APP_ID }} private-key: ${{ secrets.MU_ACCESS_APP_PRIVATE_KEY }}