chore(repo): use large macos 13 agents for freebsd (#21468)

This commit is contained in:
Jason Jean 2024-01-31 15:28:29 -05:00 committed by GitHub
parent 1d87707f54
commit d43d5365c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,7 +157,7 @@ jobs:
if-no-files-found: error if-no-files-found: error
build-freebsd: build-freebsd:
runs-on: macos-12 runs-on: macos-13-large
name: Build FreeBSD name: Build FreeBSD
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
@ -223,6 +223,10 @@ jobs:
needs: needs:
- build-freebsd - build-freebsd
- build - build
env:
GH_TOKEN: ${{ github.token }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: pnpm/action-setup@v2 - uses: pnpm/action-setup@v2
@ -235,6 +239,8 @@ jobs:
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
check-latest: true check-latest: true
cache: 'pnpm' cache: 'pnpm'
- name: Check NPM Credentials
run: npm whoami && echo "NPM credentials are valid" || (echo "NPM credentials are invalid or have expired." && exit 1)
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
- name: Download all artifacts - name: Download all artifacts
@ -271,7 +277,3 @@ jobs:
git branch -f website git branch -f website
git push -f origin website git push -f origin website
fi fi
env:
GH_TOKEN: ${{ github.token }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true