diff options
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d697d84..dc84ce9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
| @@ -45,19 +45,19 @@ jobs: | |||
| 45 | sudo apt-get install -y musl-tools | 45 | sudo apt-get install -y musl-tools |
| 46 | 46 | ||
| 47 | - name: Cache cargo registry | 47 | - name: Cache cargo registry |
| 48 | uses: actions/cache@v3 | 48 | uses: actions/cache@v4 |
| 49 | with: | 49 | with: |
| 50 | path: ~/.cargo/registry | 50 | path: ~/.cargo/registry |
| 51 | key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | 51 | key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} |
| 52 | 52 | ||
| 53 | - name: Cache cargo index | 53 | - name: Cache cargo index |
| 54 | uses: actions/cache@v3 | 54 | uses: actions/cache@v4 |
| 55 | with: | 55 | with: |
| 56 | path: ~/.cargo/git | 56 | path: ~/.cargo/git |
| 57 | key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | 57 | key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} |
| 58 | 58 | ||
| 59 | - name: Cache cargo build | 59 | - name: Cache cargo build |
| 60 | uses: actions/cache@v3 | 60 | uses: actions/cache@v4 |
| 61 | with: | 61 | with: |
| 62 | path: target | 62 | path: target |
| 63 | key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} | 63 | key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} |
| @@ -157,7 +157,7 @@ jobs: | |||
| 157 | EOF | 157 | EOF |
| 158 | 158 | ||
| 159 | - name: Create GitHub Release | 159 | - name: Create GitHub Release |
| 160 | uses: softprops/action-gh-release@v1 | 160 | uses: softprops/action-gh-release@v2 |
| 161 | with: | 161 | with: |
| 162 | files: | | 162 | files: | |
| 163 | release/*.tar.gz | 163 | release/*.tar.gz |
