Skip to content

Commit b35eb95

Browse files
committed
ci: Add --incompatible upgrade
1 parent dbac950 commit b35eb95

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/scheduled-bump-cargo-lock.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ permissions:
1616
jobs:
1717
bump-cargo-lock:
1818
runs-on: ubuntu-24.04
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
compatible:
23+
- cmd: cargo upgrade
24+
incompatible:
25+
- cmd: cargo upgrade --incompatible
26+
1927
steps:
2028
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
2129
with:
@@ -35,8 +43,7 @@ jobs:
3543
3644
- name: Bump Cargo.lock, Cargo.toml
3745
run: |
38-
nix develop --command cargo upgrade
39-
nix develop --command cargo update
46+
nix develop --command ${{ matrix.cmd }}
4047
4148
- name: Configure Git
4249
run: |

0 commit comments

Comments
 (0)