Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 5, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
actions/setup-node action minor v3.5.1 -> v3.6.0

Release Notes

actions/setup-node

v3.6.0: Add Support for Nightly, Canary and RC builds for Node.js

Compare Source

In scope of this release we added support to download nightly, rc (https://github.com/actions/setup-node/pull/611) and canary (https://github.com/actions/setup-node/pull/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 test
For 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 test
For 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

Note: For more examples please refer to documentation.

Besides, we added the following changes as:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from fuxingloh as a code owner January 5, 2023 17:21
@github-actions github-actions bot added area/workflow kind/dependencies Pull requests that update a dependency file labels Jan 5, 2023
@netlify
Copy link

netlify bot commented Jan 5, 2023

Deploy Preview for jellyfishsdk ready!

Name Link
🔨 Latest commit ede7490
🔍 Latest deploy log https://app.netlify.com/sites/jellyfishsdk/deploys/63b7072b8de9e300072da797
😎 Deploy Preview https://deploy-preview-1957--jellyfishsdk.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@qlty-cloud-legacy
Copy link

Code Climate has analyzed commit ede7490 and detected 0 issues on this pull request.

View more on Code Climate.

@codecov
Copy link

codecov bot commented Jan 5, 2023

Codecov Report

Base: 93.63% // Head: 93.16% // Decreases project coverage by -0.47% ⚠️

Coverage data is based on head (ede7490) compared to base (93eb4a3).
Patch has no changes to coverable lines.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1957      +/-   ##
==========================================
- Coverage   93.63%   93.16%   -0.48%     
==========================================
  Files         366      361       -5     
  Lines       10768    10588     -180     
  Branches     1378     1355      -23     
==========================================
- Hits        10083     9864     -219     
- Misses        659      696      +37     
- Partials       26       28       +2     
Impacted Files Coverage Δ
packages/ocean-api-client/src/ApiResponse.ts 6.25% <0.00%> (-93.75%) ⬇️
packages/jellyfish-address/src/script/P2SH.ts 45.45% <0.00%> (-50.00%) ⬇️
packages/whale-api-client/src/whale.rpc.client.ts 50.00% <0.00%> (-50.00%) ⬇️
...kages/playground-api-client/src/apis/Playground.ts 50.00% <0.00%> (-50.00%) ⬇️
...an-api-client/src/errors/ApiValidationException.ts 50.00% <0.00%> (-50.00%) ⬇️
packages/whale-api-client/src/api/loan.ts 71.42% <0.00%> (-28.58%) ⬇️
packages/jellyfish-api-core/src/category/server.ts 71.42% <0.00%> (-28.58%) ⬇️
...ground-api/src/controllers/PlaygroundController.ts 71.42% <0.00%> (-28.58%) ⬇️
...ckages/ocean-api-client/src/errors/ApiException.ts 72.22% <0.00%> (-27.78%) ⬇️
...yfish-transaction/src/script/dftx/dftx_unmapped.ts 77.77% <0.00%> (-22.23%) ⬇️
... and 38 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@github-actions
Copy link

github-actions bot commented Jan 5, 2023

Docker build preview for jellyfish/apps is ready!

Built with commit b2248e2

  • ghcr.io/jellyfishsdk/legacy-api:pr-1957
  • ghcr.io/jellyfishsdk/ocean-api:pr-1957
  • ghcr.io/jellyfishsdk/playground-api:pr-1957
  • ghcr.io/jellyfishsdk/status-api:pr-1957
  • ghcr.io/jellyfishsdk/whale-api:pr-1957

You can also get an immutable image with the commit hash

  • ghcr.io/jellyfishsdk/legacy-api:b2248e2d67a263b8c76c7fe65c2dc02264095a1e
  • ghcr.io/jellyfishsdk/ocean-api:b2248e2d67a263b8c76c7fe65c2dc02264095a1e
  • ghcr.io/jellyfishsdk/playground-api:b2248e2d67a263b8c76c7fe65c2dc02264095a1e
  • ghcr.io/jellyfishsdk/status-api:b2248e2d67a263b8c76c7fe65c2dc02264095a1e
  • ghcr.io/jellyfishsdk/whale-api:b2248e2d67a263b8c76c7fe65c2dc02264095a1e

@fuxingloh fuxingloh merged commit 8b36feb into main Jan 6, 2023
@fuxingloh fuxingloh deleted the renovate/actions-setup-node-3.x branch January 6, 2023 02:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/workflow kind/dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant