Skip to content

Commit 9689f0e

Browse files
authored
chore: bump github-actions-models to 0.28.1 (#679)
1 parent d922717 commit 9689f0e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ clap-verbosity-flag = { version = "3.0.2", features = [
3131
], default-features = false }
3232
etcetera = "0.10.0"
3333
flate2 = "1.1.1"
34-
github-actions-models = "0.28.0"
34+
github-actions-models = "0.28.1"
3535
http-cache-reqwest = "0.15.1"
3636
human-panic = "2.0.1"
3737
ignore = "0.4.23"

src/models/uses.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ impl UsesExt for Uses {
195195
match self {
196196
Uses::Docker(docker) => docker.hash.is_none() && docker.tag.is_none(),
197197
Uses::Repository(repo) => repo.git_ref.is_none(),
198-
Uses::Local(local) => local.git_ref.is_none(),
198+
// Local `uses:` are always unpinned; any `@ref` component
199+
// is actually part of the path.
200+
Uses::Local(_) => true,
199201
}
200202
}
201203

0 commit comments

Comments
 (0)