diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f28d92..c24f9c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: target: x86_64-pc-windows-msvc exe: poodle.exe steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -50,12 +50,12 @@ jobs: - name: Build run: cross build --release --target ${{ matrix.target }} --verbose --all - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: poodle-${{ matrix.target }} path: target/${{ matrix.target }}/release/${{ matrix.exe }} - name: Zip Release - uses: TheDoctor0/zip-release@0.6.1 + uses: TheDoctor0/zip-release@0.7.1 with: type: zip filename: poodle-${{ matrix.target }}.zip @@ -72,7 +72,7 @@ jobs: name: Upload to crates.io runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ff35b65..5e1c96b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,7 +13,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run tests run: cargo test --verbose --all --release release_build: @@ -31,13 +31,13 @@ jobs: target: x86_64-pc-windows-msvc exe: poodle.exe steps: - - uses: actions/checkout@v2 - - uses: Swatinem/rust-cache@v1 + - uses: actions/checkout@v3 + - uses: Swatinem/rust-cache@v2 - name: Test run: cargo test --verbose --all --release - name: Build run: cargo build --verbose --all --release - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: poodle-${{ matrix.target }} path: target/release/${{ matrix.exe }}