diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cea8e4e..99d9278 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 8ff37d1..9c8c69a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1980,7 +1980,7 @@ dependencies = [ [[package]] name = "molock" -version = "0.2.1" +version = "0.2.2" dependencies = [ "actix-rt", "actix-service", @@ -3754,6 +3754,7 @@ dependencies = [ "base64 0.22.1", "mime_guess", "regex", + "reqwest", "rust-embed", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index e2a0909..3a6cf95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] @@ -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"