Skip to content
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Version Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- name: Verify workspace versions are aligned
Expand All @@ -30,7 +30,7 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- run: rustup component add rustfmt
Expand All @@ -40,7 +40,7 @@ jobs:
name: Maintainability
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- run: ./scripts/check-maintainability.sh
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand All @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
name: macOS x64
cache_key: macos-intel-test
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand All @@ -130,7 +130,7 @@ jobs:
outputs:
run_snap_build: ${{ steps.detect.outputs.run_snap_build }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- id: detect
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: snapcore/action-build@v1
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
binary_path: target/release/horizon.exe
asset_kind: file
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
- uses: Swatinem/rust-cache@v2
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
release_version: ${{ steps.validate.outputs.release_version }}
release_prerelease: ${{ steps.validate.outputs.release_prerelease }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.event.release.tag_name || inputs.tag_name }}
fetch-depth: 0
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
surge_installer_asset: horizon-installer-win-x64.exe
surge_installer_ext: exe
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.validate-release.outputs.release_tag }}
lfs: true
Expand Down Expand Up @@ -392,7 +392,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.validate-release.outputs.release_tag }}
lfs: true
Expand Down Expand Up @@ -535,7 +535,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.validate-release.outputs.release_tag }}
lfs: true
Expand Down Expand Up @@ -575,7 +575,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.validate-release.outputs.release_tag }}
lfs: true
Expand All @@ -587,7 +587,7 @@ jobs:
git checkout "${{ github.sha }}" -- scripts

- name: Checkout Homebrew tap repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: peters/homebrew-horizon
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
Expand Down Expand Up @@ -650,7 +650,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.validate-release.outputs.release_tag }}
lfs: true
Expand All @@ -662,7 +662,7 @@ jobs:
git checkout "${{ github.sha }}" -- scripts

- name: Checkout WinGet fork
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ env.WINGET_PKGS_REPOSITORY }}
token: ${{ secrets.WINGET_PKGS_TOKEN }}
Expand Down