Skip to content

Commit d46c2e2

Browse files
committed
Sync repo templates ⚙
Sync with coreos/repo-templates@81eea93.
1 parent a73a0d7 commit d46c2e2

File tree

2 files changed

+14
-22
lines changed

2 files changed

+14
-22
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,11 @@ updates:
1616
open-pull-requests-limit: 10
1717
labels:
1818
- dependency
19+
20+
# Group all updates together in a single PR. We can remove some
21+
# updates from a combined update PR via comments to dependabot:
22+
# 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
23+
groups:
24+
build:
25+
patterns:
26+
- "*"

.github/workflows/rust.yml

Lines changed: 6 additions & 22 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.75.0
21+
ACTIONS_LINTS_TOOLCHAIN: 1.84.1
2222

2323
jobs:
2424
tests-stable:
@@ -27,7 +27,7 @@ jobs:
2727
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
2828
steps:
2929
- name: Check out repository
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v4
3131
- name: Install toolchain
3232
uses: dtolnay/rust-toolchain@v1
3333
with:
@@ -44,7 +44,7 @@ jobs:
4444
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
4545
steps:
4646
- name: Check out repository
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v4
4848
- name: Install toolchain
4949
uses: dtolnay/rust-toolchain@v1
5050
with:
@@ -61,7 +61,7 @@ jobs:
6161
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
6262
steps:
6363
- name: Check out repository
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v4
6565
- name: Detect crate MSRV
6666
run: |
6767
msrv=$(cargo metadata --format-version 1 --no-deps | \
@@ -84,7 +84,7 @@ jobs:
8484
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
8585
steps:
8686
- name: Check out repository
87-
uses: actions/checkout@v5
87+
uses: actions/checkout@v4
8888
- name: Install toolchain
8989
uses: dtolnay/rust-toolchain@v1
9090
with:
@@ -106,7 +106,7 @@ jobs:
106106
channel: [beta, nightly]
107107
steps:
108108
- name: Check out repository
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v4
110110
- name: Install toolchain
111111
uses: dtolnay/rust-toolchain@v1
112112
with:
@@ -117,19 +117,3 @@ jobs:
117117
run: cargo build --all-targets
118118
- name: cargo test
119119
run: cargo test --all-targets
120-
tests-windows:
121-
name: Tests, Windows
122-
runs-on: windows-latest
123-
steps:
124-
- name: Check out repository
125-
uses: actions/checkout@v5
126-
- name: Install toolchain
127-
uses: dtolnay/rust-toolchain@v1
128-
with:
129-
toolchain: stable
130-
- name: Cache build artifacts
131-
uses: Swatinem/rust-cache@v2
132-
- name: cargo build
133-
run: cargo build --all-targets
134-
- name: cargo test
135-
run: cargo test --all-targets

0 commit comments

Comments
 (0)