Skip to content

Commit a8b82de

Browse files
Bump actions/download-artifact from 1 to 4 in /.github/workflows (#184)
1 parent 2cc250e commit a8b82de

File tree

6 files changed

+38
-34
lines changed

6 files changed

+38
-34
lines changed

.github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
rust:
7373
- stable
7474
- beta
75-
- 1.60.0 #MSRV
75+
- 1.70.0 #MSRV
7676
fail-fast: false
7777
steps:
7878
- uses: actions/checkout@v2
@@ -116,7 +116,7 @@ jobs:
116116
args: -- --save-baseline ${{ matrix.name }}
117117
- run: critcmp --export ${{ matrix.name }} > results.json
118118
- name: Store benchmark results
119-
uses: actions/upload-artifact@v1
119+
uses: actions/upload-artifact@v4
120120
with:
121121
name: bench-${{ matrix.name }}
122122
path: results.json
@@ -132,7 +132,7 @@ jobs:
132132
- name: Cache cargo
133133
uses: Swatinem/rust-cache@v1
134134
- name: Retrieve benchmark results
135-
uses: actions/download-artifact@v1
135+
uses: actions/download-artifact@v4
136136
with:
137137
name: bench-current
138138
- name: Delete artifact
@@ -141,7 +141,7 @@ jobs:
141141
name: bench-current
142142
failOnError: false
143143
- name: Retrieve benchmark results
144-
uses: actions/download-artifact@v1
144+
uses: actions/download-artifact@v4
145145
with:
146146
name: bench-base
147147
- name: Delete artifact

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- [[#184](https://github.com/IronCoreLabs/recrypt-rs/pull/184)]
6+
- Change MSRV to Rust 1.70.0
57
- [[#177](https://github.com/IronCoreLabs/recrypt-rs/pull/177)]
68
- Change MSRV to Rust 1.60.0
79
- [[#175](https://github.com/IronCoreLabs/recrypt-rs/pull/175)]

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["cryptography", "algorithms"]
1010
keywords = ["cryptography", "proxy-re-encryption", "PRE", "ECC", "transform-encryption"]
1111
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme"
1212
edition = "2021"
13-
rust-version = "1.60.0"
13+
rust-version = "1.70.0"
1414

1515
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
1616
libc = {version = "0.2"}

flake.lock

+29-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
buildInputs = with pkgs;
2121
[ rusttoolchain pkg-config ]
2222
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
23-
[ pkgs.darwin.apple_sdk.frameworks.Security ];
23+
[ pkgs.darwin.apple_sdk.frameworks.SystemConfiguration ];
2424
};
2525

2626
});

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
profile = "default"
3-
channel = "1.67.1"
3+
channel = "1.80.1"

0 commit comments

Comments
 (0)