phpunit-json-assertions
phpunit-json-assertions copied to clipboard
chore: bump actions/setup-node from 2.1.5 to 3.6.0
Bumps actions/setup-node from 2.1.5 to 3.6.0.
Release notes
Sourced from actions/setup-node's releases.
Add Support for Nightly, Canary and RC builds for Node.js
In scope of this release we added support to download nightly, rc (actions/setup-node#611) and canary (actions/setup-node#619) Node.js distributions.
For nightly versions:
jobs: build: runs-on: ubuntu-latest name: Node sample steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16-nightly' - run: npm ci - run: npm testFor canary versions:
jobs: build: runs-on: ubuntu-latest name: Node sample steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16-v8-canary’ - run: npm ci - run: npm testFor rc versions:
jobs: build: runs-on: ubuntu-latest name: Node sample steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '16.0.0-rc.1’ - run: npm ci - run: npm test
... (truncated)
Commits
64ed1c7Add support for v8-canary, nightly and rc (#655)92a57f4Merge pull request #650 from actions/update-code-owners99e61d6Update CODEOWNERS3e8819fMerge pull request #649 from actions/update-codeowners8cd2fb2Update CODEOWNERSc406543Merge pull request #647 from akv-platform/apply-reusable-workflows92a07feFix review points217387cUpdate action to use reusable-workflows repo2db3663Merge branch 'main' of https://github.com/akv-platform/setup-node into apply-...bbe2ac7Fix typo in README (#646)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Code Climate has analyzed commit fb29f257 and detected 0 issues on this pull request.
View more on Code Climate.