@@ -16,15 +16,15 @@ jobs:
1616 run :
1717 working-directory : cli
1818 steps :
19- - uses : actions/checkout@v3
19+ - uses : actions/checkout@v4
2020 - name : install rust
2121 uses : dtolnay/rust-toolchain@master
2222 with :
2323 toolchain : stable
2424 - name : Install grcov
2525 run : rustup component add llvm-tools-preview && cargo install grcov
2626 - name : " Prepare cache"
27- uses : actions/cache@v3
27+ uses : actions/cache@v4
2828 with :
2929 path : |
3030 ~/.cargo/bin/
@@ -72,13 +72,13 @@ jobs:
7272 run :
7373 working-directory : cli
7474 steps :
75- - uses : actions/checkout@v3
75+ - uses : actions/checkout@v4
7676 - name : install rust
7777 uses : dtolnay/rust-toolchain@master
7878 with :
7979 toolchain : stable
8080 - name : " Prepare cache"
81- uses : actions/cache@v3
81+ uses : actions/cache@v4
8282 with :
8383 path : |
8484 ~/.cargo/bin/
@@ -104,7 +104,7 @@ jobs:
104104 name : Tar files
105105 run : tar cvf dctl-${{ runner.os }}-${{ matrix.target }}.tar ./target/${{ matrix.target }}/release/dctl.exe
106106 - name : save compressed build
107- uses : actions/upload-artifact@v3
107+ uses : actions/upload-artifact@v4
108108 with :
109109 name : dctl-${{ runner.os }}-${{ matrix.target }}.tar
110110 path : cli/dctl-${{ runner.os }}-${{ matrix.target }}.tar
@@ -117,7 +117,7 @@ jobs:
117117 outputs :
118118 upload_url : ${{ steps.create_release.outputs.upload_url }}
119119 steps :
120- - uses : actions/checkout@v3
120+ - uses : actions/checkout@v4
121121 - name : Create Release
122122 id : create_release
123123 uses : actions/create-release@v1
@@ -150,7 +150,7 @@ jobs:
150150 needs : release
151151 steps :
152152 - name : Download Release Asset
153- uses : actions/download-artifact@v3
153+ uses : actions/download-artifact@v4
154154 with :
155155 name : dctl-${{ runner.os }}-${{ matrix.target }}.tar
156156 - name : Upload Release Assets
0 commit comments