Skip to content

Commit

Permalink
Fix deployment workflow (#698)
Browse files Browse the repository at this point in the history
* dockerfile and cargo-audit ignore
  • Loading branch information
ewoolsey authored Feb 14, 2024
1 parent e502892 commit 3d6012d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
11 changes: 2 additions & 9 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
title: ""
labels: C-bug
assignees: ''

assignees: ""
---

**Version**
List the versions of the service you are using. The easiest way to get
this information is using `--version` argument:

`rust-app-template --version`

**Platform**
The output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows).

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
profile: minimal
toolchain: ${{ env.RUST_VERSION }}
default: true
- uses: actions-rs/audit-check@v1
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# False positive from cargo audit.
# Stems from excluded optional dependency sqlx-mysql.
# https://github.com/rustsec/rustsec/issues/1119
ignore: "RUSTSEC-2023-0071"
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ RUN rustup component add cargo
# Build the sequencer
RUN cargo build --release

# Make sure it runs
RUN /src/target/release/signup-sequencer --version

# cc variant because we need libgcc and others
FROM gcr.io/distroless/cc-debian12:nonroot

Expand Down

0 comments on commit 3d6012d

Please sign in to comment.