Skip to content

Commit d359362

Browse files
committed
Update dependencies
1 parent 7b75dbf commit d359362

File tree

3 files changed

+33
-31
lines changed

3 files changed

+33
-31
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
linux:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
with:
1111
submodules: recursive
1212
- run: sudo apt-get update -y
1313
- run: sudo apt-get install -y ocl-icd-opencl-dev
1414
- uses: actions-rs/toolchain@v1
1515
with:
1616
profile: minimal
17-
- uses: Swatinem/rust-cache@v1
17+
- uses: Swatinem/rust-cache@v2
1818

1919
- uses: lukka/get-cmake@latest
2020
- uses: lukka/run-vcpkg@v10
@@ -30,7 +30,7 @@ jobs:
3030
- run: make target/gyroflow-ofx-linux.zip
3131

3232
- name: Save Binaries
33-
uses: actions/upload-artifact@v2
33+
uses: actions/upload-artifact@v3
3434
with:
3535
name: gyroflow-ofx-linux
3636
path: target/gyroflow-ofx-linux.zip
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions-rs/toolchain@v1
5252
with:
5353
profile: minimal
54-
- uses: Swatinem/rust-cache@v1
54+
- uses: Swatinem/rust-cache@v2
5555

5656
- name: Add rust target
5757
run: rustup target add aarch64-apple-darwin
@@ -89,7 +89,7 @@ jobs:
8989
xcrun stapler staple --verbose target/gyroflow-ofx-macosx.dmg
9090
9191
- name: Save Binaries
92-
uses: actions/upload-artifact@v2
92+
uses: actions/upload-artifact@v3
9393
with:
9494
name: gyroflow-ofx-macosx
9595
path: target/gyroflow-ofx-macosx.dmg
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
profile: minimal
115115
target: x86_64-pc-windows-msvc
116-
- uses: Swatinem/rust-cache@v1
116+
- uses: Swatinem/rust-cache@v2
117117

118118
- uses: lukka/get-cmake@latest
119119
- uses: lukka/run-vcpkg@v10
@@ -134,7 +134,7 @@ jobs:
134134
- run: make target/gyroflow-ofx-windows.zip
135135

136136
- name: Save Binaries
137-
uses: actions/upload-artifact@v2
137+
uses: actions/upload-artifact@v3
138138
with:
139139
name: gyroflow-ofx-windows
140140
path: target/gyroflow-ofx-windows.zip

Cargo.lock

Lines changed: 24 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gyroflow-ofx"
3-
version = "1.0.8"
3+
version = "1.0.9"
44
authors = ["Ilya Epifanov <elijah.epifanov@gmail.com>", "Adrian <adrian.eddy@gmail.com>"]
55
license = "GPL-3.0-or-later"
66
edition = "2021"
@@ -17,7 +17,7 @@ measure_time = "0.8"
1717
log = "0.4"
1818
itertools = "0.10"
1919
lru = "0.8"
20-
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "3f38b61" }
20+
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "866eed5" }
2121
#gyroflow-core = { path = "../gyroflow/src/core", default-features = false }
2222
serde_json = "1"
2323

0 commit comments

Comments
 (0)