fix(repo): improve nightly workflow setup (#15358)

This commit is contained in:
Miroslav Jonaš 2023-03-01 19:46:39 +01:00 committed by GitHub
parent df4efc281f
commit f6dd44145f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -93,8 +93,6 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install PNPM - name: Install PNPM
if: ${{ matrix.package_manager == 'pnpm' }} if: ${{ matrix.package_manager == 'pnpm' }}
@ -139,7 +137,7 @@ jobs:
- name: Homebrew cache directory path - name: Homebrew cache directory path
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
id: homebrew-cache-dir-path id: homebrew-cache-dir-path
run: echo "::set-output name=dir::$(brew --cache)" run: echo "dir=$(brew --cache)" >> $GITHUB_OUTPUT
- name: Cache Homebrew - name: Cache Homebrew
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}

View File

@ -46,8 +46,6 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node_version }} - name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3 uses: actions/setup-node@v3