Skip to content

Commit

Permalink
Update github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
WINSDK committed Apr 20, 2024
1 parent 3b5a6a4 commit f8ef062
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -22,15 +22,15 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Linux build
path: ./target/release/bite
build-macos:
runs-on: macos-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -41,15 +41,15 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MacOS build
path: ./target/release/bite
build-windows:
runs-on: windows-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -60,15 +60,15 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Windows build
path: ./target/release/bite.exe
test-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checking out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checking out rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f8ef062

Please sign in to comment.