Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ci dependencies #328

Merged
merged 1 commit into from
Oct 6, 2024
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ jobs:
components: rustfmt, clippy

- name: 🧰 Install clippy-sarif
uses: taiki-e/install-action@58a3efb22c892c0e7d722787ab604b97b62ac694 # v2
uses: taiki-e/install-action@6d49eff78fe8ad9f571fb25522747f2d9e84be6b # v2
with:
tool: clippy-sarif

- name: 🧰 Install sarif-fmt
uses: taiki-e/install-action@58a3efb22c892c0e7d722787ab604b97b62ac694 # v2
uses: taiki-e/install-action@6d49eff78fe8ad9f571fb25522747f2d9e84be6b # v2
with:
tool: sarif-fmt

- name: 🧰 Install cargo-deny
uses: taiki-e/install-action@58a3efb22c892c0e7d722787ab604b97b62ac694 # v2
uses: taiki-e/install-action@6d49eff78fe8ad9f571fb25522747f2d9e84be6b # v2
with:
tool: cargo-deny

Expand All @@ -73,7 +73,7 @@ jobs:

- name: 📤 Upload analysis results to GitHub
if: always()
uses: github/codeql-action/upload-sarif@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3
uses: github/codeql-action/upload-sarif@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3
continue-on-error: true
with:
sarif_file: clippy-results.sarif
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:

- name: 💨 Set up sccache
if: ${{ !endsWith(matrix.target, '-pc-windows-gnu') }}
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6

- name: ⚙️ Prime sccache cache backend
if: ${{ !endsWith(matrix.target, '-pc-windows-gnu') }}
Expand All @@ -211,15 +211,15 @@ jobs:

- name: 🧰 Install nextest
if: startsWith(matrix.target, 'x86_64-') || contains(matrix.target, '-linux-')
uses: taiki-e/install-action@58a3efb22c892c0e7d722787ab604b97b62ac694 # v2
uses: taiki-e/install-action@6d49eff78fe8ad9f571fb25522747f2d9e84be6b # v2
env:
CARGO_BUILD_TARGET: ${{ matrix.host-target }}
with:
tool: nextest

- name: 🧰 Install cargo-deb
if: endsWith(matrix.target, '-linux-gnu')
uses: taiki-e/install-action@58a3efb22c892c0e7d722787ab604b97b62ac694 # v2
uses: taiki-e/install-action@6d49eff78fe8ad9f571fb25522747f2d9e84be6b # v2
env:
CARGO_BUILD_TARGET: ${{ matrix.host-target }}
with:
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: 🧰 Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3

- name: ⚙️ Generate Docker image metadata
id: meta
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:

runs-on: ubuntu-latest

container: debian:bullseye-slim@sha256:00558f781b91e90469812bad32002f311ab26ef241b4a1996f6600680ec82f5c
container: debian:bullseye-slim@sha256:3f9e53602537cc817d96f0ebb131a39bdb16fa8b422137659a9a597e7e3853c1

# Benchmark failure is not critical enough to fail the whole workflow.
# We will keep an eye on them anyway, though
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
toolchain: nightly

- name: 💨 Set up sccache
uses: mozilla-actions/sccache-action@89e9040de88b577a072e3760aaf59f585da083af # v0.0.5
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6

- name: ⚙️ Prime sccache cache backend
shell: bash
Expand Down
Loading