Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}

- name: Caching
uses: Swatinem/rust-cache@b8a6852b4f997182bdea832df3f9e153038b5191
uses: Swatinem/rust-cache@65012b490220f477f20ab979e35ae732e6de4e68
with:
shared-key: "stable"

Expand All @@ -46,7 +46,7 @@ jobs:
cargo +${NIGHTLY_VERSION} fmt -- --check

- name: Typos
uses: crate-ci/typos@ef5fcf92dfbd679f97c0371159e143852f7b1eb1
uses: crate-ci/typos@7b04f660f4ee4f048d18fd341887cf28dfbedfe2

test:
runs-on: ubuntu-latest-16core
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}

- name: Caching
uses: Swatinem/rust-cache@b8a6852b4f997182bdea832df3f9e153038b5191
uses: Swatinem/rust-cache@65012b490220f477f20ab979e35ae732e6de4e68
with:
shared-key: "stable"
workspaces: "head -> target"
Expand All @@ -93,13 +93,13 @@ jobs:
- name: Load base coverage results from cache
if: github.event_name == 'pull_request'
id: cache-coverage
uses: actions/cache@v3
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae
with:
path: ./old-cov.lcov
key: coverage-${{ github.event.pull_request.base.sha }}

- name: Pull base
uses: actions/checkout@v3
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231
if: github.event_name == 'pull_request' && steps.cache-coverage.outputs.cache-hit != 'true'
with:
ref: ${{ github.event.pull_request.base.ref }}
Expand All @@ -116,7 +116,7 @@ jobs:

- name: Meow Coverage
id: coverage-report
uses: famedly/meow-coverage@main
uses: famedly/meow-coverage@ead50e2b41ca1c2f47b9367b374e588ac8a419d9
if: github.event_name == 'pull_request'
with:
new-lcov-file: 'new-cov.lcov'
Expand All @@ -140,7 +140,7 @@ jobs:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}

- name: Caching
uses: Swatinem/rust-cache@b8a6852b4f997182bdea832df3f9e153038b5191
uses: Swatinem/rust-cache@65012b490220f477f20ab979e35ae732e6de4e68
with:
shared-key: "nightly"

Expand All @@ -164,7 +164,7 @@ jobs:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}

- name: Caching
uses: Swatinem/rust-cache@b8a6852b4f997182bdea832df3f9e153038b5191
uses: Swatinem/rust-cache@65012b490220f477f20ab979e35ae732e6de4e68
with:
shared-key: "nightly"

Expand Down
Loading