Skip to content

Commit 5ed9480

Browse files
committed
fix: unpin dependencies
It seems as though pinning dependencies is actually more harmful than helpful for Debian Rust, so let's unpin them.
1 parent 2ebaeda commit 5ed9480

3 files changed

Lines changed: 327 additions & 181 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ jobs:
4343
with:
4444
name: debstatus
4545
path: /tmp/debstatus.json
46-
- name: Check all dependencies match Debian
47-
run: jq -s 'map(select(.depth == 1 and (.debian.exact_match | not))) | if length > 0 then "Mismatched dependencies:", ., halt_error(1) else "All dependencies match Debian" end' /tmp/debstatus.json
46+
- name: Show dependency status
47+
run: |
48+
jq -s 'map(select(.depth == 1)) | map({name, version, debian_version: .debian.version, exact_match: .debian.exact_match})' /tmp/debstatus.json
4849
4950
build:
5051
name: Build package

0 commit comments

Comments
 (0)