Skip to content

Commit aeb851a

Browse files
committed
chore: fix dependabot groups
1 parent a8b36e3 commit aeb851a

14 files changed

Lines changed: 143 additions & 142 deletions

File tree

.github/dependabot.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ updates:
1111
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#groups--
1212
# 1 PR per week and group
1313
groups:
14-
major:
14+
cargo-major:
1515
update-types: ["major"]
16-
minor:
16+
cargo-minor:
1717
update-types: ["minor"]
18-
patch:
18+
cargo-patch:
1919
update-types: ["patch"]
2020
- package-ecosystem: github-actions
2121
directory: /
@@ -29,6 +29,7 @@ updates:
2929
directory: /
3030
schedule:
3131
interval: weekly
32+
groups:
3233
prd-major:
3334
dependency-type: "production"
3435
update-types: ["major"]

.github/workflows/buildjet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --no-self-update
2222

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
check-dist:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Setup Node.js 20.x
2121
uses: actions/setup-node@v4

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --component llvm-tools-preview --no-self-update
2222

.github/workflows/git-registry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- run: rustup toolchain install stable --profile minimal --no-self-update
2323

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --no-self-update
2222

.github/workflows/simple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --no-self-update
2222

.github/workflows/target-dir.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --no-self-update
2222

.github/workflows/workspaces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
CARGO_TERM_COLOR: always
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- run: rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown --no-self-update
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sensible defaults.
66
## Example usage
77

88
```yaml
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010

1111
# selecting a toolchain either by action or manual `rustup` calls should happen
1212
# before the plugin, as the cache uses the current rustc version as its cache key

0 commit comments

Comments
 (0)