diff --git a/.github/actions/setup-tools/action.yml b/.github/actions/setup-tools/action.yml index 2fb91f4b6ef..38cdee0e76f 100644 --- a/.github/actions/setup-tools/action.yml +++ b/.github/actions/setup-tools/action.yml @@ -59,7 +59,7 @@ runs: - name: Setup Node if: inputs.tools == 'all' || contains(inputs.tools, 'nodejs') - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4 with: node-version: 20.x registry-url: https://registry.npmjs.org diff --git a/.github/workflows/prerequisites.yml b/.github/workflows/prerequisites.yml index 7ec9b94946d..f8ed4d0bec9 100644 --- a/.github/workflows/prerequisites.yml +++ b/.github/workflows/prerequisites.yml @@ -82,7 +82,7 @@ jobs: - name: Unit-test provider code run: make test_provider - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2 + uses: codecov/codecov-action@0da7aa657d958d32c117fc47e1f977e7524753c7 # v5.3.0 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: inputs.is_pr diff --git a/.github/workflows/verify-release.yml b/.github/workflows/verify-release.yml index 1d65c91d670..5c5ce57b30b 100644 --- a/.github/workflows/verify-release.yml +++ b/.github/workflows/verify-release.yml @@ -74,6 +74,8 @@ jobs: runner: ${{ fromJSON(format('["ubuntu-latest","windows-latest"{0}]', inputs.enableMacRunner && ',"macos-latest"' || '')) }} runs-on: ${{ matrix.runner }} steps: + - name: Configure Git to checkout files with long names + run: git config --global core.longpaths true - name: Checkout Repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: