diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index 23f8e2b..cc2eda2 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -16,10 +16,10 @@ jobs: fetch-depth: 0 - name: Add TypeScript problem matcher run: echo "::add-matcher::.github/problemMatchers/tsc.json" - - name: Use Node.js v16 with Yarn Registry + - name: Use Node.js v18 with Yarn Registry uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: yarn registry-url: https://registry.yarnpkg.com/ - name: Install Dependencies diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 861fa33..f533f3c 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,10 +15,10 @@ jobs: uses: actions/checkout@v3 - name: Add problem matcher run: echo "::add-matcher::.github/problemMatchers/eslint.json" - - name: Use Node.js v16 + - name: Use Node.js v18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: yarn registry-url: https://registry.yarnpkg.com/ - name: Install Dependencies @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [14, 16, 17] + node: [16, 18, 20] steps: - name: Checkout Project uses: actions/checkout@v3 diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 91e39e8..fda0b61 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -14,10 +14,10 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Use Node.js v16 with GitHub Package Registry + - name: Use Node.js v18 with GitHub Package Registry uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: yarn registry-url: https://registry.yarnpkg.com/ - name: Install Dependencies