Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 1 to 4 in /.github/workflows #184

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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
rust:
- stable
- beta
- 1.60.0 #MSRV
- 1.70.0 #MSRV
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
args: -- --save-baseline ${{ matrix.name }}
- run: critcmp --export ${{ matrix.name }} > results.json
- name: Store benchmark results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: bench-${{ matrix.name }}
path: results.json
Expand All @@ -132,7 +132,7 @@ jobs:
- name: Cache cargo
uses: Swatinem/rust-cache@v1
- name: Retrieve benchmark results
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: bench-current
- name: Delete artifact
Expand All @@ -141,7 +141,7 @@ jobs:
name: bench-current
failOnError: false
- name: Retrieve benchmark results
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: bench-base
- name: Delete artifact
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- [[#184](https://github.com/IronCoreLabs/recrypt-rs/pull/184)]
- Change MSRV to Rust 1.70.0
- [[#177](https://github.com/IronCoreLabs/recrypt-rs/pull/177)]
- Change MSRV to Rust 1.60.0
- [[#175](https://github.com/IronCoreLabs/recrypt-rs/pull/175)]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = ["cryptography", "algorithms"]
keywords = ["cryptography", "proxy-re-encryption", "PRE", "ECC", "transform-encryption"]
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme"
edition = "2021"
rust-version = "1.60.0"
rust-version = "1.70.0"

[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
libc = {version = "0.2"}
Expand Down
56 changes: 29 additions & 27 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
buildInputs = with pkgs;
[ rusttoolchain pkg-config ]
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
[ pkgs.darwin.apple_sdk.frameworks.Security ];
[ pkgs.darwin.apple_sdk.frameworks.SystemConfiguration ];
};

});
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
profile = "default"
channel = "1.67.1"
channel = "1.80.1"
Loading