Skip to content

chore(deps): update all github-actions #164

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

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

steps:
- name: Checkout
uses: actions/checkout@v3

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

View workflow job for this annotation

GitHub Actions / actionlint

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

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/release.yml:50:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
uses: hashicorp/vault-action@v2.8.1
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -73,7 +73,7 @@
run: ./build.sh

- name: Install cargo-workspaces
uses: baptiste0928/[email protected].0
uses: baptiste0928/[email protected].1
with:
crate: cargo-workspaces

Expand All @@ -87,9 +87,9 @@
--yes

- name: Setup node
uses: actions/setup-node@v3

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

View workflow job for this annotation

GitHub Actions / actionlint

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

the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/release.yml:90:15: the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
node-version: "16"
node-version: "16.20.2"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: "aqua/package-lock.json"
cache: "npm"
Expand Down Expand Up @@ -138,7 +138,7 @@
echo "found any?:" "${{ steps.status.outputs.found }}"

- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
uses: hashicorp/vault-action@v2.8.1
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

steps:
- name: Checkout
uses: actions/checkout@v3

Check failure on line 22 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L22

the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/tests.yml:22:15: the runner of "actions/checkout@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -33,7 +33,7 @@
run: ./build.sh

- name: Run cargo clippy
uses: actions-rs/cargo@v1

Check failure on line 36 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L36

the runner of "actions-rs/cargo@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/tests.yml:36:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: clippy
args: -Z unstable-options --all
Expand All @@ -49,9 +49,9 @@
run: cargo nextest run --release --all-features --no-fail-fast --workspace --exclude trust-graph-distro

- name: Setup node
uses: actions/setup-node@v3

Check failure on line 52 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/tests.yml#L52

the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
e:.github/workflows/tests.yml:52:15: the runner of "actions/setup-node@v3" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
node-version: "16"
node-version: "16.20.2"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: "aqua/package-lock.json"
cache: "npm"
Expand Down
Loading