Remove --remote argument in cmake tests.

This will prevent non-hermetic breakages from changes to the Abseil release branch we're pinned to.

PiperOrigin-RevId: 529459765
pull/12667/head
Mike Kruskal 2 years ago
parent 750a6e7d7c
commit 24d3e74ac9
  1. 8
      .github/workflows/test_cpp.yml

@ -123,7 +123,7 @@ jobs:
# Initialize/update the submodule from remote to validate a new fetch based on .gitmodules
# We have to do this separately since actions/checkout doesn't support the "--remote" flag
- name: Update submodules
run: git submodule update --init --remote --recursive
run: git submodule update --init --recursive
- name: Setup ccache
uses: protocolbuffers/protobuf-ci/ccache@v1
@ -147,7 +147,7 @@ jobs:
ref: ${{ inputs.safe-checkout }}
- name: Update submodules
run: git submodule update --init --remote --recursive
run: git submodule update --init --recursive
- name: Setup ccache
uses: protocolbuffers/protobuf-ci/ccache@v1
@ -178,7 +178,7 @@ jobs:
ref: ${{ inputs.safe-checkout }}
- name: Update submodules
run: git submodule update --init --remote --recursive
run: git submodule update --init --recursive
- name: Setup ccache
uses: protocolbuffers/protobuf-ci/ccache@v1
@ -309,7 +309,7 @@ jobs:
ref: ${{ inputs.safe-checkout }}
- name: Update submodules
run: git submodule update --init --remote --recursive
run: git submodule update --init --recursive
- name: Setup ccache
uses: protocolbuffers/protobuf-ci/ccache@v1

Loading…
Cancel
Save