diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-10-01 20:13:54 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-01 20:13:54 -0400 |
commit | 89c407aa3468491fb1a0eb93a1591d84667e1ca9 (patch) | |
tree | 3f9cfa6580b78e32d23501705df86bfda6256677 /.github/workflows/release.yml | |
parent | 58ab3a01a0d4b5f9e8bff56f623ceb906ff603b9 (diff) | |
download | caddy-89c407aa3468491fb1a0eb93a1591d84667e1ca9.tar.gz caddy-89c407aa3468491fb1a0eb93a1591d84667e1ca9.zip |
build(deps): bump actions/checkout from 3 to 4 (#5846)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec9c97260..6b68125ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -43,7 +43,7 @@ jobs: check-latest: true # Force fetch upstream tags -- because 65 minutes - # tl;dr: actions/checkout@v3 runs this line: + # tl;dr: actions/checkout@v4 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 |