From 11568f4a3f1f74e1c520fbb095254a2ee86179a7 Mon Sep 17 00:00:00 2001 From: Aaron Steinfeld Date: Thu, 26 Jun 2025 18:57:46 -0400 Subject: [PATCH] feat: update publish repo --- .github/workflows/build-and-test.yml | 12 ++++++------ .github/workflows/publish.yml | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2287bdac..7faea5f2 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -6,10 +6,10 @@ on: - main jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node 16 uses: actions/setup-node@v3 @@ -23,17 +23,17 @@ jobs: - name: Build run: npm run build test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Node 16 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' cache: 'npm' - name: NPM Install diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b595e94..f02ac685 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,14 +5,14 @@ on: - main jobs: publish: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 20 cache: 'npm' - name: NPM Install @@ -25,6 +25,6 @@ jobs: run: npm run semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_USERNAME: ${{ secrets.NPM_USERNAME }} - NPM_PASSWORD: ${{ secrets.NPM_PASSWORD }} - NPM_EMAIL: ${{ secrets.NPM_EMAIL }} + NPM_USERNAME: ${{ secrets.HAR_PUBLISH_USER }} + NPM_PASSWORD: ${{ secrets.HAR_PUBLISH_TOKEN }} + NPM_EMAIL: ${{ secrets.HAR_PUBLISH_USER }}