Skip to content

Commit 620d389

Browse files
chore(deps): bump the actions group across 1 directory with 2 updates (#2581)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tushar <tusharmath@gmail.com>
1 parent b6821ab commit 620d389

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Cargo Clippy
5555
run: cargo +nightly clippy --all-features --all-targets --workspace --fix --allow-dirty -- -D warnings
5656
- name: Autofix
57-
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
57+
uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
5858
concurrency:
5959
group: autofix-${{github.ref}}
6060
cancel-in-progress: false

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/checkout@v6
9090
- id: create_release
9191
name: Draft Release
92-
uses: release-drafter/release-drafter@v6
92+
uses: release-drafter/release-drafter@v7
9393
with:
9494
config-name: release-drafter.yml
9595
env:

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Release Drafter
42-
uses: release-drafter/release-drafter@v6
42+
uses: release-drafter/release-drafter@v7
4343
with:
4444
config-name: release-drafter.yml
4545
env:

crates/forge_ci/src/jobs/draft_release_update_job.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use gh_workflow::*;
44
pub fn draft_release_update_job() -> Job {
55
Job::new("update_release_draft").add_step(
66
Step::new("Release Drafter")
7-
.uses("release-drafter", "release-drafter", "v6")
7+
.uses("release-drafter", "release-drafter", "v7")
88
.env(("GITHUB_TOKEN", "${{ secrets.GITHUB_TOKEN }}"))
99
.add_with(("config-name", "release-drafter.yml")),
1010
)

crates/forge_ci/src/jobs/release_draft.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub fn create_draft_release_job(build_job_id: &str) -> Job {
1717
)
1818
.add_step(Step::new("Checkout Code").uses("actions", "checkout", "v6"))
1919
.add_step(
20-
Step::new("Draft Release").uses("release-drafter", "release-drafter", "v6")
20+
Step::new("Draft Release").uses("release-drafter", "release-drafter", "v7")
2121
.id("create_release")
2222
.env(("GITHUB_TOKEN", "${{ secrets.GITHUB_TOKEN }}"))
2323
.with(("config-name", "release-drafter.yml")),

crates/forge_ci/src/workflows/autofix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn generate_autofix_workflow() {
2323
.add_step(Step::new("Autofix").uses(
2424
"autofix-ci",
2525
"action",
26-
"635ffb0c9798bd160680f18fd73371e355b85f27",
26+
"7a166d7532b277f34e16238930461bf77f9d7ed8",
2727
));
2828

2929
let events = Event::default()

0 commit comments

Comments
 (0)