Skip to content

Commit 4f32cac

Browse files
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` | | [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) | `6.2.0` | `7.2.0` | | [actions/github-script](https://github.com/actions/github-script) | `8` | `9` | Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@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](redhat-plumbers-in-action/advanced-issue-labeler@v2...v3) Updates `release-drafter/release-drafter` from 6.2.0 to 7.2.0 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@v6.2.0...v7.2.0) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- 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: release-drafter/release-drafter dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e653401 commit 4f32cac

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/CodeQl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v6
5454

5555
- name: Setup Python Version
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: ${{ inputs.python_version }}
5959

.github/workflows/IssueTriager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }}
4545

4646
- name: Apply Labels from Triage
47-
uses: redhat-plumbers-in-action/advanced-issue-labeler@v2
47+
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3
4848
with:
4949
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
5050
template: ${{ matrix.template }}

.github/workflows/ReleaseDrafter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Build a ${{ env.latest_mu_branch }} Draft
8181
if: ${{ startsWith(github.ref, env.latest_mu_branch_full) }}
8282
id: update_draft_n
83-
uses: release-drafter/release-drafter@v6.2.0
83+
uses: release-drafter/release-drafter@v7.2.0
8484
with:
8585
# Note: Path is relative to .github/
8686
config-name: release-draft-config-n.yml
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build a ${{ env.previous_mu_branch }} Draft
9090
if: ${{ startsWith(github.ref, env.previous_mu_branch_full) }}
9191
id: update_draft_n_1
92-
uses: release-drafter/release-drafter@v6.2.0
92+
uses: release-drafter/release-drafter@v7.2.0
9393
with:
9494
# Note: Path is relative to .github/
9595
config-name: release-draft-config-n-1.yml
@@ -98,7 +98,7 @@ jobs:
9898
- name: Build the New Release Draft
9999
if: ${{ !startsWith(github.ref, 'refs/heads/release') }}
100100
id: update_draft_non_release
101-
uses: release-drafter/release-drafter@v6.2.0
101+
uses: release-drafter/release-drafter@v7.2.0
102102
with:
103103
# Note: Path is relative to .github/
104104
config-name: release-draft-config.yml

.github/workflows/ReleaseWorkflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Get Current Draft Release
3636
id: draft_release
37-
uses: actions/github-script@v8
37+
uses: actions/github-script@v9
3838
with:
3939
script: |
4040
const releases = await github.rest.repos.listReleases({
@@ -80,7 +80,7 @@ jobs:
8080
RUSTC_BOOTSTRAP: 1
8181

8282
- name: Wait for Release Draft Updater
83-
uses: actions/github-script@v8
83+
uses: actions/github-script@v9
8484
with:
8585
script: |
8686
const workflowId = "release-draft.yml";
@@ -116,7 +116,7 @@ jobs:
116116
}
117117
118118
- name: Publish Release
119-
uses: actions/github-script@v8
119+
uses: actions/github-script@v9
120120
with:
121121
script: |
122122
const releaseId = ${{ steps.draft_release.outputs.id }};

.github/workflows/Stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
- name: Generate Token
7777
id: app-token
78-
uses: actions/create-github-app-token@v2
78+
uses: actions/create-github-app-token@v3
7979
with:
8080
app-id: ${{ vars.MU_ACCESS_APP_ID }}
8181
private-key: ${{ secrets.MU_ACCESS_APP_PRIVATE_KEY }}

.github/workflows/pull-request-formatting-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Check for Validation Errors
7070
if: env.VALIDATION_ERROR
71-
uses: actions/github-script@v8
71+
uses: actions/github-script@v9
7272
with:
7373
script: |
7474
core.setFailed('PR Formatting Validation Check Failed!')

0 commit comments

Comments
 (0)