.github/workflows: change Go LICENSE URL from golang.org to go.dev (#449)

Co-authored-by: Filippo Valsorda <github@bip.filippo.io>
This commit is contained in:
Simone Ragusa 2022-09-11 21:54:32 +02:00 committed by GitHub
parent 084c974f53
commit 1f84a45175
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ jobs:
sudo apt-get update && sudo apt-get install -y osslsigncode
cp LICENSE "$RUNNER_TEMP/LICENSE"
echo -e "\n---\n" >> "$RUNNER_TEMP/LICENSE"
curl "https://golang.org/LICENSE?m=text" >> "$RUNNER_TEMP/LICENSE"
curl -L "https://go.dev/LICENSE?m=text" >> "$RUNNER_TEMP/LICENSE"
VERSION="$(git describe --tags)"
function build_age() {
DIR="$(mktemp -d)"