Skip to content

Commit 61c9880

Browse files
authored
fix: don't use wildcards for in-workspace deps (#832)
1 parent a62bfa5 commit 61c9880

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/release-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Upload to release
9393
run: |
94-
gh release upload "${GITHUB_REF_NAME}"
94+
gh release upload "${GITHUB_REF_NAME}" distrib/*
9595
env:
9696
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9797
shell: bash

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ license = "MIT"
1616

1717
[workspace.dependencies]
1818
anyhow = "1.0.98"
19-
github-actions-expressions = { path = "crates/github-actions-expressions", version = "*" }
20-
github-actions-models = { path = "crates/github-actions-models", version = "*" }
19+
github-actions-expressions = { path = "crates/github-actions-expressions", version = "0.0.3" }
20+
github-actions-models = { path = "crates/github-actions-models", version = "0.28.3" }
2121
itertools = "0.14.0"
2222
pest = "2.8.0"
2323
pest_derive = "2.8.0"
@@ -58,7 +58,7 @@ tracing-subscriber = "0.3.19"
5858
tree-sitter = "0.25.4"
5959
tree-sitter-bash = "0.23.3"
6060
tree-sitter-powershell = "0.25.2"
61-
yamlpath = { path = "crates/yamlpath", version = "*" }
61+
yamlpath = { path = "crates/yamlpath", version = "0.18.0" }
6262
tree-sitter-yaml = "0.7.0"
6363

6464

crates/zizmor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zizmor"
33
description = "Static analysis for GitHub Actions"
4-
version = "1.8.0-rc0"
4+
version = "1.8.0-rc1"
55
repository = "https://github.com/zizmorcore/zizmor"
66
documentation = "https://docs.zizmor.sh"
77
keywords = ["cli", "github-actions", "static-analysis", "security"]

0 commit comments

Comments
 (0)