From b70937d65baa6ee45edaa4f91848e45fdd481c5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jan 2022 13:13:54 +0000 Subject: [PATCH 1/2] ci(deps): bump actions/setup-node from 2.4.1 to 2.5.1 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.4.1 to 2.5.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.4.1...v2.5.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7ec295a..92c241b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,7 +29,7 @@ jobs: with: submodules: true - name: Node ${{ matrix.node_version }} - x64 on ${{ matrix.os }} - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v2.5.1 with: node-version: ${{ matrix.node_version }} - uses: actions/cache@v2.1.6 From 8b6302d9a55afb50ce9f8fbf753d581b3772c73f Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 18 Jan 2022 11:41:43 +0200 Subject: [PATCH 2/2] ci: added nvmrc and reconfigure ci to user nvmrc --- .github/workflows/ci.yaml | 6 ++---- .nvmrc | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 .nvmrc diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 92c241b..e3563d2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,8 +19,6 @@ jobs: strategy: fail-fast: false matrix: - node_version: - - 16.13.0 os: - ubuntu-20.04 experimental: [false] @@ -28,10 +26,10 @@ jobs: - uses: actions/checkout@v2.3.5 with: submodules: true - - name: Node ${{ matrix.node_version }} - x64 on ${{ matrix.os }} + - name: Node 16.13.0 - x64 on ${{ matrix.os }} uses: actions/setup-node@v2.5.1 with: - node-version: ${{ matrix.node_version }} + node-version-file: '.nvmrc' - uses: actions/cache@v2.1.6 with: path: ~/.npm diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..5dbac1e --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v16.13.0 \ No newline at end of file