diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 4d0f8f19..bafb71ad 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -2,12 +2,6 @@ name: setup description: Setup Node, cache and install deps -inputs: - node_version: - description: Node Version - required: false - default: '16' - runs: using: composite steps: @@ -30,7 +24,7 @@ runs: - name: Use Node uses: actions/setup-node@v3 with: - node-version: ${{ inputs.node_version }} + node-version: 18 # This doesn't just set the registry url, but also sets # the right configuration in .npmrc that reads NPM token # from NPM_AUTH_TOKEN environment variable. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 423d2dd6..f2a06c42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,8 +32,6 @@ jobs: fetch-depth: 0 - name: Setup uses: ./.github/actions/setup - with: - node_version: 18 - name: Test uses: ./.github/actions/test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8a08650..d8bcb75b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,8 +22,6 @@ jobs: - uses: actions/checkout@v3 - name: Setup uses: ./.github/actions/setup - with: - node_version: 18 - name: Test uses: ./.github/actions/test