52 lines
2.6 KiB
YAML
52 lines
2.6 KiB
YAML
name: go-caches
|
|
description: Restore the go module, build, and golangci-lint caches. Save only on the cache-seeder workflow.
|
|
|
|
# Only the cache-seeder workflow saves; rename requires updating cache-seeder.yml.
|
|
# The lint job restores but does not save the gobuild cache, so only one writer
|
|
# (the gobuild job) populates it and there is no contention on the cache key.
|
|
|
|
inputs:
|
|
lint-cache:
|
|
description: Restore (and save in cache-seeder) ~/.cache/golangci-lint
|
|
default: "false"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- if: ${{ github.workflow == 'cache-seeder' }}
|
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: gomod-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
|
|
restore-keys: gomod-${{ runner.os }}-${{ runner.arch }}
|
|
- if: ${{ github.workflow != 'cache-seeder' }}
|
|
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: gomod-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
|
|
restore-keys: gomod-${{ runner.os }}-${{ runner.arch }}
|
|
- if: ${{ github.workflow == 'cache-seeder' && inputs.lint-cache != 'true' }}
|
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/.cache/go-build
|
|
key: gobuild-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
|
|
restore-keys: gobuild-${{ runner.os }}-${{ runner.arch }}
|
|
- if: ${{ github.workflow != 'cache-seeder' || inputs.lint-cache == 'true' }}
|
|
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/.cache/go-build
|
|
key: gobuild-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum') }}
|
|
restore-keys: gobuild-${{ runner.os }}-${{ runner.arch }}
|
|
- if: ${{ inputs.lint-cache == 'true' && github.workflow == 'cache-seeder' }}
|
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/.cache/golangci-lint
|
|
key: golint-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum', '.golangci.yml') }}
|
|
restore-keys: golint-${{ runner.os }}-${{ runner.arch }}
|
|
- if: ${{ inputs.lint-cache == 'true' && github.workflow != 'cache-seeder' }}
|
|
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ~/.cache/golangci-lint
|
|
key: golint-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('go.sum', '.golangci.yml') }}
|
|
restore-keys: golint-${{ runner.os }}-${{ runner.arch }}
|