Skip to content

Commit

Permalink
Bump actions/setup-node from 3.5.0 to 3.5.1 (#2873)
Browse files Browse the repository at this point in the history
Bumps [actions/setup-node](https://github.com/actions/setup-node) from
3.5.0 to 3.5.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>Update <code>@​actions/core</code> and Print Node, Npm, Yarn
versions</h2>
<p>In scope of this release we updated <a
href="https://github-redirect.dependabot.com/actions/setup-node/pull/587">actions/core
to 1.10.0</a>. Moreover, we added logic <a
href="https://github-redirect.dependabot.com/actions/setup-node/pull/368">to
print Nodejs, Npm, Yarn versions</a> after installation.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/actions/setup-node/commit/8c91899e586c5b171469028077307d293428b516"><code>8c91899</code></a>
Update <code>@​actions/core</code> to 1.10.0 (<a
href="https://github-redirect.dependabot.com/actions/setup-node/issues/587">#587</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/c81d8ad96dab0a834a87f7a0300b154386f2e26a"><code>c81d8ad</code></a>
Print node, npm and yarn versions after installation (<a
href="https://github-redirect.dependabot.com/actions/setup-node/issues/368">#368</a>)</li>
<li><a
href="https://github.com/actions/setup-node/commit/c96ab56c5b0ebc955a5dd6bb6f1813c2f91b8658"><code>c96ab56</code></a>
Add information about always-auth input (<a
href="https://github-redirect.dependabot.com/actions/setup-node/issues/585">#585</a>)</li>
<li>See full diff in <a
href="https://github.com/actions/setup-node/compare/v3.5.0...v3.5.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-node&package-manager=github_actions&previous-version=3.5.0&new-version=3.5.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and mergify[bot] authored Oct 19, 2022
1 parent f412247 commit adaa131
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- run: apt-get update && apt install -y binaryen # For `wasm-opt`
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v1
- uses: actions/setup-node@v3.5.0
- uses: actions/setup-node@v3.5.1
with:
node-version: '12' # An old version is used to ensure compatibility
- uses: denoland/setup-deno@v1
Expand All @@ -70,7 +70,7 @@ jobs:
with:
fetch-depth: 0 # Necessary to fetch pull request base below
- uses: Swatinem/rust-cache@v1
- uses: actions/setup-node@v3.5.0
- uses: actions/setup-node@v3.5.1
with:
node-version: '14' # Because this step doesn't actually check anything, we use a more liberal version
- uses: baptiste0928/cargo-install@v1 # This action ensures that the twiggy compilation is cached.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v3
with:
path: repo
- uses: actions/setup-node@v3.5.0
- uses: actions/setup-node@v3.5.1
with:
node-version: current
- run: npm install
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
image: rust:1.64
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
- uses: actions/setup-node@v3.5.1
with:
node-version: 12 # An old version is intentionally used in order to check compatibility
- run: apt-get update && apt install -y binaryen # For `wasm-opt`
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Necessary below for checking if the tag exists.
- uses: actions/setup-node@v3.5.0
- uses: actions/setup-node@v3.5.1
with:
node-version: 12
- uses: denoland/setup-deno@v1
Expand Down

0 comments on commit adaa131

Please sign in to comment.