diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index 2b9badcc7d68554f771c3cd539f56806b8fcd457..b0b6e2bc360ac6396e88b7cff53b001c27d391d6 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -47,9 +47,10 @@ runs: (steps.node-modules-restore.outputs.cache-hit == 'true') && 'true' || '' }}' >> "$GITHUB_ENV" - - name: Enable corepack - shell: bash - run: corepack enable + - name: Setup pnpm + uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + with: + standalone: true - name: Setup Node uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c05cd51029b00fa0e2448faf3597985851a9072..a6bd0340172e6d3e11aac31a59ec85177db61555 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,8 +95,9 @@ jobs: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: - sparse-checkout: ${{ env.SPARSE_CHECKOUT }} filter: blob:none # we don't need all blobs + sparse-checkout: ${{ env.SPARSE_CHECKOUT }} + show-progress: false - name: Calculate matrix for `node_modules` prefetch uses: ./.github/actions/calculate-prefetch-matrix @@ -152,8 +153,9 @@ jobs: if: needs.setup.outputs.os-matrix-is-full && runner.os != 'Linux' uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: - sparse-checkout: ${{ env.SPARSE_CHECKOUT }} filter: blob:none # we don't need all blobs + sparse-checkout: ${{ env.SPARSE_CHECKOUT }} + show-progress: false - name: Setup Node.js if: needs.setup.outputs.os-matrix-is-full && runner.os != 'Linux' @@ -174,6 +176,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -217,6 +221,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -257,6 +263,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -284,6 +292,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -321,6 +331,8 @@ jobs: steps: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -384,6 +396,7 @@ jobs: uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: filter: blob:none # we don't need all blobs + show-progress: false - name: Download coverage reports uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 @@ -410,8 +423,9 @@ jobs: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: - sparse-checkout: ${{ env.SPARSE_CHECKOUT }} filter: blob:none # we don't need all blobs + sparse-checkout: ${{ env.SPARSE_CHECKOUT }} + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -498,6 +512,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -530,6 +546,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Setup Node.js uses: ./.github/actions/setup-node @@ -556,16 +574,19 @@ jobs: steps: - name: Checkout code uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false + + - name: Setup pnpm + uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + with: + standalone: true - name: Setup Node.js uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 with: node-version: ${{ env.NODE_VERSION }} - - name: Enable corepack - shell: bash - run: corepack enable - - name: Download package uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 with: @@ -604,8 +625,8 @@ jobs: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: fetch-depth: 0 # zero stands for full checkout, which is required for semantic-release - show-progress: false filter: blob:none # we don't need all blobs, only the full tree + show-progress: false - name: docker-config uses: containerbase/internal-tools@75d68da3c8cd3d622cf6d4b8d2dfe7e4dc33dfed # v3.0.78 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6a09b627aecba74ecf0d6c7b6555a7a1fc221191..e97fbbbef0f8771cd714b4ad24acb0a5599351f7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,6 +32,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Delete fixtures to suppress false positives run: | diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 4db3b1294712b8b49ddb1be31ba59666856e5d49..0fa95315e9ec2a1b80cc0d7ac8c7f9fba1fb713a 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -10,6 +10,8 @@ jobs: steps: - name: 'Checkout Repository' uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: 'Dependency Review' uses: actions/dependency-review-action@5bbc3ba658137598168acb2ab73b21c432dd411b # v4.2.5 diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 5408e72ac52b3df1227934e803baa84790614e33..301f770c90bc8fb342ae8c79ca6a4ffe93fa4ab2 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Build and run dev container task uses: devcontainers/ci@a56d055efecd725e8cfe370543b6071b79989cc8 # v0.3.1900000349 diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index fd8da18468e280d8972ae54689c1645df87d2467..26a2783904ac3f2c8670446fda2eb8f3f19fce2e 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -23,6 +23,7 @@ jobs: uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 with: persist-credentials: false + show-progress: false - name: 'Run analysis' uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 51a0c88cba550508481db22e0a915f8d4ac66b3d..de8dd67c124d4e4a2cc6a9d018829927b14d4f16 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -18,10 +18,13 @@ jobs: pull-requests: write steps: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - - name: Enable corepack - shell: bash - run: corepack enable + - name: Setup pnpm + uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + with: + standalone: true - name: Set up Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 diff --git a/.github/workflows/ws_scan.yaml b/.github/workflows/ws_scan.yaml index d9dae9c518a5af5ab2a49baefbd5f11dc736d031..eb533dc6cbba654f4c6fd7308502f6f5c2b0f9e1 100644 --- a/.github/workflows/ws_scan.yaml +++ b/.github/workflows/ws_scan.yaml @@ -12,6 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + with: + show-progress: false - name: Download UA run: curl -LJO https://github.com/whitesource/unified-agent-distribution/releases/latest/download/wss-unified-agent.jar