Skip to content

Commit

Permalink
Merge pull request #5 from joar/fix-release-build
Browse files Browse the repository at this point in the history
fix(ci): Use [email protected] for now
  • Loading branch information
joar authored Jan 31, 2023
2 parents 87050f5 + f4eee45 commit 9e9c2dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@latest
# https://github.com/rust-build/rust-build.action/issues/62
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUSTTARGET: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ mod tests {
should_trim_leading: ["\"123", 123],
should_trim_both: ["\"123\"", 123],
should_not_understand_binary: ["101010", 101010],
should_trim_null_bytes: ["\01\0", 1],
should_trim_null_bytes: ["\x001\x00", 1],
should_not_trim_leading_hyphen: ["-10", -10],
should_ignore_non_numeric_sql_injections: [" 001; DROP TABLE timestamps WHERE year = 'the-seventies'", 1],
should_not_be_distracted_by_ancient_greek_numerals: ["𐅀42", 42],
Expand Down

0 comments on commit 9e9c2dc

Please sign in to comment.