Skip to content

Commit

Permalink
Update Node.js version to 18.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinciarka committed Mar 25, 2024
1 parent 1a94c80 commit a8ce4fb
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .codesandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM node:18.12
FROM node:18.19.1
2 changes: 1 addition & 1 deletion .github/workflows/aws-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1

- name: Check required secrets
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- uses: actions/cache@v3
id: yarn-cache
with:
Expand All @@ -36,7 +36,7 @@ jobs:
if (( 10#${numbers[1]} != 10#${numbers[0]}+1 )); then
echo "The last two migration files do not have consecutive numbers: ${numbers[0]} and ${numbers[1]}"
exit 1
fi
fi
- name: Install packages
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn --no-progress --non-interactive --frozen-lockfile
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- uses: actions/cache@v3
id: yarn-cache
with:
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- uses: actions/cache@v3
id: yarn-cache
with:
Expand All @@ -103,7 +103,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- uses: actions/cache@v3
id: yarn-cache
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dev-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Use Node.js 18.12
- name: Use Node.js 18.19.1
uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1

- name: Generate Cache Key
id: key
Expand All @@ -40,10 +40,10 @@ jobs:
if: ${{ !needs.search.outputs.cache-hit }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.12
- name: Use Node.js 18.19.1
uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- name: Check cache
uses: actions/cache@v3
id: yarn-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs-bundle-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- name: Use modules cache
uses: actions/cache@v3
id: yarn-cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prod-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Use Node.js 18.12
- name: Use Node.js 18.19.1
uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1

- name: Generate Cache Key
id: key
Expand All @@ -40,10 +40,10 @@ jobs:
if: ${{ !needs.search.outputs.cache-hit }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.12
- name: Use Node.js 18.19.1
uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- name: Check cache
uses: actions/cache@v3
id: yarn-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.12
node-version: 18.19.1
- name: 'Determine Release Type'
run: |
if ${{ contains(github.event.inputs.release_type, 'major') }}; then
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.12
18.19.1
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.12
FROM node:18.19.1

EXPOSE 3000

Expand Down

0 comments on commit a8ce4fb

Please sign in to comment.