Skip to content

Commit

Permalink
deps: node 16 (#632)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Ryan Ling <[email protected]>
  • Loading branch information
3 people authored Oct 27, 2021
1 parent 971de28 commit 2c075fc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
fetch-depth: 0
lfs: true

- name: Set up Node.js 14.x
- name: Set up Node.js 16.x
uses: actions/setup-node@master
with:
node-version: 14.x
node-version: 16.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
with:
lfs: true

- name: Set up Node.js 14.x
- name: Set up Node.js 16.x
uses: actions/setup-node@master
with:
node-version: 14.x
node-version: 16.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -70,10 +70,10 @@ jobs:
with:
lfs: true

- name: Set up Node.js 14.x
- name: Set up Node.js 16.x
uses: actions/setup-node@master
with:
node-version: 14.x
node-version: 16.x

- name: Test template
run: yarn test:template ${{ matrix.template }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
16
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If you're on Windows, we recommend the [Windows Subsystem for Linux].

First, some JavaScript tooling:

- Node.js 14+
- Node.js 16+
- Yarn 1.x

Next, install npm dependencies:
Expand Down
4 changes: 2 additions & 2 deletions src/cli/configure/modules/tsconfig.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ ARG DIR dist
RUN echo redist
FROM gcr.io/distroless/nodejs:14 AS runtime
FROM gcr.io/distroless/nodejs:16 AS runtime
COPY --from=build /workdir/dist './dist'
Expand All @@ -142,7 +142,7 @@ ARG DIR lib
RUN echo redist
FROM gcr.io/distroless/nodejs:14 AS runtime
FROM gcr.io/distroless/nodejs:16 AS runtime
COPY --from=build /workdir/lib './lib'
Expand Down

0 comments on commit 2c075fc

Please sign in to comment.