Skip to content

Commit

Permalink
chore: update actions to the latest stable versions (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Panquesito7 authored Jun 27, 2023
1 parent 82b0db0 commit eced254
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit eced254

Please sign in to comment.