Skip to content

Commit

Permalink
Bump actions/download-artifact from 1 to 4 in /.github/workflows (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 9, 2024
1 parent 2cc250e commit a8b82de
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 34 deletions.
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"

0 comments on commit a8b82de

Please sign in to comment.