diff --git a/.github/workflows/software-upgrade-test.yml b/.github/workflows/software-upgrade-test.yml index 8668b71ca..9e4ec2de8 100644 --- a/.github/workflows/software-upgrade-test.yml +++ b/.github/workflows/software-upgrade-test.yml @@ -272,12 +272,12 @@ jobs: go-version: "1.21" if: steps.cache-new-binary.outputs.cache-hit != 'true' - - name: Restore snapshot from cache - uses: actions/cache/restore@v4 - with: - path: | - ${{ needs.retrieve-snapshot.outputs.SNAPSHOT_FILE_PATH }} - key: ${{ runner.os }}-snapshot-${{ needs.retrieve-latest-tag.outputs.LATEST_TAG }} + # - name: Restore snapshot from cache + # uses: actions/cache/restore@v4 + # with: + # path: | + # ${{ needs.retrieve-snapshot.outputs.SNAPSHOT_FILE_PATH }} + # key: ${{ runner.os }}-snapshot-${{ needs.retrieve-latest-tag.outputs.LATEST_TAG }} - name: Restore new binary from cache uses: actions/cache@v4 @@ -306,7 +306,7 @@ jobs: - name: Chain snapshot and export run: | ${{ needs.build-old-binary.outputs.OLD_UPGRADE_ASSURE_BINARY_PATH }} \ - ${{ needs.retrieve-snapshot.outputs.SNAPSHOT_FILE_PATH }} \ + ${{ needs.retrieve-snapshot.outputs.SNAPSHOT_DOWNLOAD_URL }} \ ${{ needs.retrieve-old-binary.outputs.OLD_BINARY_PATH }} \ ${{ needs.build-new-binary.outputs.NEW_BINARY_PATH }} \ --skip-chain-init \