Skip to content

Commit

Permalink
Merge pull request #1925 from oasisprotocol/lw/lint-workflow-bash
Browse files Browse the repository at this point in the history
Double quote vars in github action
  • Loading branch information
lukaw3d authored Aug 14, 2024
2 parents 01d1a20 + 5f27545 commit b444f4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/actions/hash-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ runs:
export CC_x86_64_fortanix_unknown_sgx=clang-11
for pkg in $PKG_DIRS; do
pushd ${pkg}
cargo build --release --locked --target $TARGET
pushd "${pkg}"
cargo build --release --locked --target "$TARGET"
cargo elf2sgxs --release
popd
done
else
export CARGO_TARGET_DIR="$CARGO_TARGET_ROOT/default"
for pkg in $PKG_DIRS; do
pushd ${pkg}
pushd "${pkg}"
cargo build --release --locked
popd
done
Expand Down
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,14 @@ updates:
# Excluded dependencies are updated in separate PRs.
# Commented out because it requires at least one entry to be valid.
# exclude-patterns: []
# Ignored depenednecies are ignored by dependabot.
# Ignored dependencies are ignored by dependabot.
ignore:
# oasis-core dependencies are manually kept up to date.
- dependency-name: oasis-core-runtime
- dependency-name: oasis-core-keymanager
labels:
- c:deps
- rust
labels:
- c:deps
- c:runtime-sdk

# Manage npm package versions.
Expand Down

0 comments on commit b444f4b

Please sign in to comment.