Skip to content

Commit

Permalink
ci: 💚 fix compilation error and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisu-Woniu committed Sep 9, 2024
1 parent 06ce751 commit 6c1a4ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tauri-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4.0.0
with:
version: latest
- name: Setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tauri-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4.0.0
with:
version: latest
- name: Setup Node.js
Expand Down
1 change: 1 addition & 0 deletions src-tauri/crypto/src/signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ fn sign(
let now = Utc::now();
let sig_conf = SignatureConfigBuilder::default()
.pub_alg(secret_key.algorithm())
.hash_alg(secret_key.hash_alg())
.typ(SignatureType::Binary)
.issuer(Some(secret_key.key_id()))
.created(Some(now))
Expand Down

0 comments on commit 6c1a4ca

Please sign in to comment.