From e26b1b52ac87a813ed52f2cfd3c9bcf9d8e243ac Mon Sep 17 00:00:00 2001 From: Patrick Rodgers Date: Mon, 22 Apr 2024 10:51:26 -0400 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3fcc1d17b..0448cbb32 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,14 +11,14 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: main # setup nodejs - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: 'https://registry.npmjs.org' cache: 'npm' cache-dependency-path: package-lock.json @@ -26,10 +26,6 @@ jobs: # Run the npm install - run: npm ci - # Runs a set of commands using the runners shell - - name: Test - not setup - run: echo this would be the tests - # Runs a single command using the runners shell - name: Run publishing scripts run: |