18
18
runs-on : ubuntu-22.04
19
19
steps :
20
20
- name : Checkout repository
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
- name : Install Rust
23
23
uses : dtolnay/rust-toolchain@00b49be78f40fba4e87296b2ead62868750bdd83 # stable branch
24
24
- name : Run cargo fmt
@@ -47,15 +47,15 @@ jobs:
47
47
- name : Install Rust
48
48
uses : dtolnay/rust-toolchain@00b49be78f40fba4e87296b2ead62868750bdd83 # stable branch
49
49
- name : Cargo Cache
50
- uses : actions/cache@v3
50
+ uses : actions/cache@v4
51
51
with :
52
52
path : |
53
53
~/.cargo/registry
54
54
~/.cargo/git
55
55
key : ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
56
56
restore-keys : |
57
57
${{ runner.os }}-${{ matrix.target }}-cargo-
58
- - uses : actions/checkout@v3
58
+ - uses : actions/checkout@v4
59
59
- name : Build
60
60
run : cargo build --release --locked
61
61
- name : Run tests
@@ -70,13 +70,13 @@ jobs:
70
70
cp target/release/krapslog.exe krapslog-${{ matrix.target }}.exe
71
71
- name : Upload Linux and macOS Binaries
72
72
if : matrix.build == 'linux' || matrix.build == 'macos'
73
- uses : actions/upload-artifact@v3
73
+ uses : actions/upload-artifact@v4
74
74
with :
75
75
name : krapslog-${{ matrix.target }}
76
76
path : krapslog-${{ matrix.target }}
77
77
- name : Upload Windows Binaries
78
78
if : matrix.build == 'windows'
79
- uses : actions/upload-artifact@v3
79
+ uses : actions/upload-artifact@v4
80
80
with :
81
81
name : krapslog-${{ matrix.target }}.exe
82
82
path : krapslog-${{ matrix.target }}.exe
87
87
if : startsWith(github.ref, 'refs/tags/')
88
88
needs : [build]
89
89
steps :
90
- - uses : actions/download-artifact@v3
90
+ - uses : actions/download-artifact@v4
91
91
with :
92
92
path : raw-artifacts
93
93
- name : Prepare binary archives
0 commit comments