Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update actions to the latest stable versions #6

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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