Skip to content

Commit f0ca6a7

Browse files
committed
Sync repo templates ⚙
Sync with coreos/repo-templates@31f11ac.
1 parent 5493d68 commit f0ca6a7

File tree

2 files changed

+10
-26
lines changed

2 files changed

+10
-26
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Maintained in https://github.com/coreos/repo-templates
22
# Do not edit downstream.
33

4+
# Updates are grouped together by ecosystem in a single PR. An update can be
5+
# removed from a combined update PR via comments to dependabot:
6+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-updates-with-comment-commands
7+
48
version: 2
59
updates:
6-
- package-ecosystem: "github-actions"
7-
directory: "/"
8-
schedule:
9-
interval: "weekly"
10-
labels: ["skip-notes"]
11-
open-pull-requests-limit: 3
1210
- package-ecosystem: cargo
1311
directory: /
1412
schedule:
1513
interval: weekly
1614
open-pull-requests-limit: 10
1715
labels:
1816
- dependency
17+
18+
groups:
19+
build:
20+
patterns:
21+
- "*"

.github/workflows/rust.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
# Pinned toolchain for linting
21-
ACTIONS_LINTS_TOOLCHAIN: 1.86.0
21+
ACTIONS_LINTS_TOOLCHAIN: 1.90.0
2222

2323
jobs:
2424
tests-stable:
@@ -117,22 +117,3 @@ jobs:
117117
run: cargo build --all-targets
118118
- name: cargo test
119119
run: cargo test --all-targets
120-
build-and-test:
121-
name: Build and test on ${{ matrix.host }}
122-
runs-on: ${{ matrix.host }}
123-
strategy:
124-
matrix:
125-
host: [windows-latest, macos-latest]
126-
steps:
127-
- name: Check out repository
128-
uses: actions/checkout@v6
129-
- name: Install toolchain
130-
uses: dtolnay/rust-toolchain@v1
131-
with:
132-
toolchain: stable
133-
- name: Cache build artifacts
134-
uses: Swatinem/rust-cache@v2
135-
- name: cargo build
136-
run: cargo build --all-targets
137-
- name: cargo test
138-
run: cargo test --all-targets

0 commit comments

Comments
 (0)