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 baptiste0928/cargo-install action to v3.2.0 #852

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
uses: dsherret/rust-toolchain-file@v1

- name: Install cargo-edit
uses: baptiste0928/cargo-install@v3.1.0
uses: baptiste0928/cargo-install@v3.2.0
with:
crate: cargo-edit

Expand Down Expand Up @@ -127,20 +127,20 @@
working-directory: air-interpreter

- name: Upload air-interpreter-wasm artifact to GitHub checks
uses: actions/upload-artifact@v3

Check failure on line 130 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L130

the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/release.yml:130:15: the runner of "actions/upload-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: air-interpreter-wasm
path: target/wasm32-wasi/release/air_interpreter_server.wasm

- name: Add air-interpreter-wasm artifact to GitHub release
if: needs.release-please.outputs.air-interpreter-release-created
uses: softprops/action-gh-release@v1

Check failure on line 137 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L137

the runner of "softprops/action-gh-release@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/release.yml:137:15: the runner of "softprops/action-gh-release@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
files: target/wasm32-wasi/release/air_interpreter_server.wasm
tag_name: ${{ needs.release-please.outputs.air-interpreter-tag-name }}

- name: Install cargo-workspaces
uses: baptiste0928/cargo-install@v3.1.0
uses: baptiste0928/cargo-install@v3.2.0
with:
crate: cargo-workspaces

Expand Down Expand Up @@ -169,7 +169,7 @@
uses: actions/checkout@v4

- name: Download air-interpreter-wasm artifact
uses: actions/download-artifact@v3

Check failure on line 172 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L172

the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/release.yml:172:15: the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: air-interpreter-wasm
path: avm/client/dist/
Expand Down Expand Up @@ -227,7 +227,7 @@
uses: dsherret/rust-toolchain-file@v1

- name: Download air-interpreter-wasm artifact
uses: actions/download-artifact@v3

Check failure on line 230 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L230

the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/release.yml:230:15: the runner of "actions/download-artifact@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
name: air-interpreter-wasm
path: crates/interpreter-wasm/
Expand Down
Loading