Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
uses: actions/checkout@v5

- name: Run cargo-audit
uses: actions-rs/audit-check@v1

Check failure on line 142 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: e:.github/workflows/ci.yml:142:15: the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

Check failure on line 142 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint / Lint workflow files

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: e:.github/workflows/ci.yml:142:15: the runner of "actions-rs/audit-check@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -208,7 +208,7 @@
run: strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: ${{ matrix.asset_name }}
path: target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
Expand All @@ -221,7 +221,7 @@
if: github.event_name == 'release'
steps:
- name: Download all artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8

- name: Display structure of downloaded files
run: ls -R
Expand Down Expand Up @@ -291,7 +291,7 @@
run: cargo tarpaulin --out Html --all-features --timeout 300

- name: Upload coverage report as artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: coverage-report
path: tarpaulin-report.html
Expand Down
Loading