Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jun 5, 2024
1 parent f39b640 commit 2364999
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/quick-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
override: true
components: rustfmt

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cargo fmt
uses: actions-rs/cargo@v1
Expand All @@ -43,7 +43,7 @@ jobs:
override: true
components: clippy

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cargo clippy
uses: actions-rs/cargo@v1
Expand All @@ -67,7 +67,7 @@ jobs:
toolchain: stable
override: true

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cargo test
uses: actions-rs/cargo@v1
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Cache Nix dependencies
uses: DeterminateSystems/magic-nix-cache-action@v2

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Check flake
run: nix flake check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install cargo deb
uses: actions-rs/cargo@v1
with:
Expand All @@ -40,9 +40,9 @@ jobs:
env:
TARGET_DIR: target/release

runs-on: macos-10.15
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get Release Version
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
release_url: ${{ steps.create-release.outputs.html_url }}
asset_upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get Release Version
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
runs-on: ubuntu-latest
needs: ["create_draft"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Get Release Version
run: |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down

0 comments on commit 2364999

Please sign in to comment.