Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
- name: Download release artifacts
if: steps.latest_release.outputs.has_release == 'true'
run: |
gh release download ${{ steps.latest_release.outputs.tag }} --repo ${{ github.repository }} --pattern "*.tar.gz" --dir ./artifacts
gh release download ${{ steps.latest_release.outputs.tag }} --repo ${{ github.repository }} --pattern "*.tar.gz" --dir ./artifacts || echo "No release artifacts found."
gh release download ${{ steps.latest_release.outputs.tag }} --repo ${{ github.repository }} --pattern "*.intoto.jsonl" --dir ./artifacts || echo "No provenance file found."

- name: Install SLSA verifier
Expand Down
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "molock"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
description = "High-performance mock server for CI/CD pipelines and testing"
authors = ["Molock Team"]
Expand Down Expand Up @@ -74,7 +74,7 @@ notify = { version = "6.0", optional = true }
# OpenAPI / Swagger UI
utoipa = { version = "5", features = ["actix_extras"] }
utoipa-actix-web = "0.1"
utoipa-swagger-ui = { version = "9", features = ["actix-web"] }
utoipa-swagger-ui = { version = "9", features = ["actix-web", "reqwest"] }

# Conditional evaluation
eval = "0.4"
Expand Down
Loading