diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 18 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98f85ba5..1921a457 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,19 +25,19 @@ jobs: override: true - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -64,19 +64,19 @@ jobs: override: true - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -104,19 +104,19 @@ jobs: components: rustfmt, clippy - name: Cache cargo registry - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/registry key: ${{ runner.os }}-v1-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: ~/.cargo/git key: ${{ runner.os }}-v1-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo target dir - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: target key: ${{ runner.os }}-v1-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4dfe9fc8..ff4f5a24 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,7 +96,7 @@ jobs: cp "target/${{ matrix.target }}/release/hx" "dist/" fi - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v2.2.3 with: name: bins-${{ matrix.build }} path: dist |