Unverified Commit cff6f7aa authored by Derek Nola's avatar Derek Nola Committed by GitHub

Expand GHA go caching to includ newest release branch (#10307)

parent d9b8ba8d
...@@ -6,10 +6,10 @@ runs: ...@@ -6,10 +6,10 @@ runs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version-file: 'go.mod' # Just use whatever version is in the go.mod file go-version-file: 'go.mod' # Just use whatever version is in the go.mod file
cache: ${{ github.ref == 'refs/heads/master' }} cache: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release-1.29' }}
- name: Prepare for go cache - name: Prepare for go cache
if: ${{ github.ref != 'refs/heads/master' }} if: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/release-1.29' }}
shell: bash shell: bash
run: | run: |
echo "GO_CACHE=$(go env GOCACHE)" | tee -a "$GITHUB_ENV" echo "GO_CACHE=$(go env GOCACHE)" | tee -a "$GITHUB_ENV"
...@@ -17,7 +17,7 @@ runs: ...@@ -17,7 +17,7 @@ runs:
echo "GO_VERSION=$(go env GOVERSION | tr -d 'go')" | tee -a "$GITHUB_ENV" echo "GO_VERSION=$(go env GOVERSION | tr -d 'go')" | tee -a "$GITHUB_ENV"
- name: Setup read-only cache - name: Setup read-only cache
if: ${{ github.ref != 'refs/heads/master' }} if: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/release-1.29' }}
uses: actions/cache/restore@v4 uses: actions/cache/restore@v4
with: with:
path: | path: |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment