diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 4631b8ed31..60ff530f29 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -93,8 +93,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - fetch-depth: 0 - name: Install PNPM if: ${{ matrix.package_manager == 'pnpm' }} @@ -139,7 +137,7 @@ jobs: - name: Homebrew cache directory path if: ${{ matrix.os == 'macos-latest' }} id: homebrew-cache-dir-path - run: echo "::set-output name=dir::$(brew --cache)" + run: echo "dir=$(brew --cache)" >> $GITHUB_OUTPUT - name: Cache Homebrew if: ${{ matrix.os == 'macos-latest' }} diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 7e16fb6c8e..77696631d8 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -46,8 +46,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - fetch-depth: 0 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v3