diff options
author | Francis Lavoie <[email protected]> | 2022-03-15 18:09:19 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-15 22:09:19 +0000 |
commit | 4e9fbee1e2ef39ff56bdfb19126a9b1a8a841eb4 (patch) | |
tree | 3864a5cf79c6e3b6a94d8fa819deb621c9b02122 /.github/workflows/release.yml | |
parent | a9c7e94a38e4f4719a5c1cf7f3e11e8cf427f04e (diff) | |
download | caddy-4e9fbee1e2ef39ff56bdfb19126a9b1a8a841eb4.tar.gz caddy-4e9fbee1e2ef39ff56bdfb19126a9b1a8a841eb4.zip |
ci: Build on Go 1.18, bump actions versions (#4637)
* ci: Build on Go 1.18, bump actions versions
* Revert linter version bump for now
* Try linter again
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 834d30346..8572e44ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,22 +11,22 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - go: [ '1.17' ] + go: [ '1.18' ] runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 # Force fetch upstream tags -- because 65 minutes - # tl;dr: actions/checkout@v2 runs this line: + # tl;dr: actions/checkout@v3 runs this line: # git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +ebc278ec98bb24f2852b61fde2a9bf2e3d83818b:refs/tags/ # which makes its own local lightweight tag, losing all the annotations in the process. Our earlier script ran: # git fetch --prune --unshallow |