From debf9a62ae9bd28ca5244e40e68d4c832dd85413 Mon Sep 17 00:00:00 2001 From: David Leal Date: Tue, 30 May 2023 15:14:04 +0000 Subject: [PATCH] chore: update actions to the latest stable versions --- .github/workflows/release.yml | 8 ++++---- .github/workflows/rust.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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 }}