Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscerie committed Sep 25, 2024
1 parent 815621b commit 8d9e0a2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Build (Default features)
run: |
cd selene
Expand All @@ -23,7 +23,7 @@ jobs:
build_windows_light:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Build (Lightweight)
run: |
cd selene
Expand All @@ -36,7 +36,7 @@ jobs:
build_mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Build (Default features)
Expand All @@ -52,7 +52,7 @@ jobs:
build_mac_light:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Build (Lightweight)
Expand All @@ -68,7 +68,7 @@ jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Build (Default features)
run: |
cd selene
Expand All @@ -81,7 +81,7 @@ jobs:
build_linux_light:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Build (Lightweight)
run: |
cd selene
Expand All @@ -96,9 +96,9 @@ jobs:
needs: ['build_windows_light', 'build_windows', 'build_mac', 'build_mac_light', 'build_linux', 'build_linux_light']
if: contains(github.event.head_commit.message, '[release]')
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts
- run: |
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
asset_path: ./selene-light-macos.zip
asset_name: selene-light-${{ env.VERSION }}-macos.zip
asset_content_type: application/zip
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
Expand Down

0 comments on commit 8d9e0a2

Please sign in to comment.