diff options
author | Yevhen Pavlov <yevhen.pavlov.ua@gmail.com> | 2023-10-17 13:24:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 10:24:54 +0000 |
commit | d98c8638847edf4553ded36a0c269f2e9e617f12 (patch) | |
tree | 048867ad7a227dd9d2f532bcd56cf56342ebf665 /.github/workflows/cron-licenses.yml | |
parent | 0f3ea4e1b1c3184aa9d8de9211ea4a22fb0cd55c (diff) | |
download | gitea-d98c8638847edf4553ded36a0c269f2e9e617f12.tar.gz gitea-d98c8638847edf4553ded36a0c269f2e9e617f12.zip |
actions/setup-go use go-version-file (#27651)
These changes will allow not to specify the version of go in every
pipeline.
Diffstat (limited to '.github/workflows/cron-licenses.yml')
-rw-r--r-- | .github/workflows/cron-licenses.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cron-licenses.yml b/.github/workflows/cron-licenses.yml index 5de165487c..0fbcbf603d 100644 --- a/.github/workflows/cron-licenses.yml +++ b/.github/workflows/cron-licenses.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: - go-version: "~1.21" + go-version-file: go.mod check-latest: true - run: make generate-license generate-gitignore timeout-minutes: 40 |