From cc1bafb5aa7f6c5c923121cc4c67d3f0823451bb Mon Sep 17 00:00:00 2001 From: Andrew Gliga Date: Tue, 13 Feb 2024 11:45:51 -0800 Subject: [PATCH] chore: updated to use node 18 --- .changeset/config.json | 2 +- .github/workflows/node.js.yml | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 017e83b51..8a49d1a30 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -3,7 +3,7 @@ "changelog": [ "@changesets/changelog-github", { - "repo": "ebay/skin" + "repo": "ebay/ebayui-core" } ], "commit": false, diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index c41bb0a0b..d7d491b83 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -5,7 +5,6 @@ on: types: [opened, synchronize] push: branches: [master] -permissions: read-all concurrency: group: "${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}" @@ -18,7 +17,7 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-node@master with: - node-version: "16.x" + node-version: "18" - uses: webfactory/ssh-agent@v0.5.4 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} @@ -37,10 +36,6 @@ jobs: path-to-lcov: .coverage/lcov.info release: runs-on: ubuntu-latest - permissions: - # Give the default GITHUB_TOKEN write permission to commit and push the - # added or changed files to the repository. - contents: write needs: [build] if: "${{ github.repository_owner == 'ebay' && github.event_name == 'push' }}" steps: @@ -49,7 +44,7 @@ jobs: - name: Setup node uses: actions/setup-node@v3 with: - node-version: "16.x" + node-version: "18" cache: npm - name: Install dependencies run: npm ci