Skip to content

Commit

Permalink
Update actions for newer macOS runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacingBat3 committed May 2, 2024
1 parent d1a813b commit fcc8ea6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -87,7 +87,7 @@ jobs:
cache: npm

- name: Install dependencies (NPM${{ matrix.name == 'macOS' && '+PIP' || '' }})
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools &&' || '' }} npm ci
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools --break-system-packages &&' || '' }} npm ci

- name: Update dependencies
if: ${{ matrix.build == 'latest' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
cache: npm

- name: Install dependencies (NPM${{ matrix.name == 'macOS' && '+PIP' || '' }})
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools &&' || '' }} npm ci
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools --break-system-packages &&' || '' }} npm ci

- name: TSC cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
cache: npm

- name: Install dependencies (NPM${{ matrix.name == 'macOS' && '+PIP' || '' }})
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools &&' || '' }} npm ci
run: ${{ matrix.runner == 'macos-latest' && 'python -m pip install setuptools --break-system-packages &&' || '' }} npm ci

- name: TSC cache
uses: actions/cache@v3
Expand Down

0 comments on commit fcc8ea6

Please sign in to comment.