ci: revert to Go 1.25.0 to match go.mod
Some checks failed
Checkout test / test (push) Successful in 4s
CI with Native Libraries / Check Build Environment (push) Successful in 11s
Documentation / build-and-publish (push) Failing after 40s
CI with Native Libraries / Build and Test Native Libraries (push) Failing after 16s
CI with Native Libraries / Build Release Libraries (push) Has been skipped
Some checks failed
Checkout test / test (push) Successful in 4s
CI with Native Libraries / Check Build Environment (push) Successful in 11s
Documentation / build-and-publish (push) Failing after 40s
CI with Native Libraries / Build and Test Native Libraries (push) Failing after 16s
CI with Native Libraries / Build Release Libraries (push) Has been skipped
This commit is contained in:
parent
d003b3de64
commit
98a156110e
4 changed files with 6 additions and 6 deletions
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
|
||||
- name: Setup Go (fast)
|
||||
run: |
|
||||
REQUIRED_GO="1.21"
|
||||
REQUIRED_GO="1.25.0"
|
||||
if command -v go &> /dev/null && go version | grep -q "go${REQUIRED_GO}"; then
|
||||
echo "Go ${REQUIRED_GO} already installed - skipping download"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ jobs:
|
|||
|
||||
- name: Setup Go
|
||||
run: |
|
||||
REQUIRED_GO="1.25"
|
||||
REQUIRED_GO="1.23.4"
|
||||
if command -v go &> /dev/null && go version | grep -q "go${REQUIRED_GO}"; then
|
||||
echo "Go ${REQUIRED_GO} already installed - skipping download"
|
||||
else
|
||||
|
|
@ -183,7 +183,7 @@ jobs:
|
|||
|
||||
- name: Setup Go (fast)
|
||||
run: |
|
||||
REQUIRED_GO="1.25"
|
||||
REQUIRED_GO="1.23.4"
|
||||
if command -v go &> /dev/null && go version | grep -q "go${REQUIRED_GO}"; then
|
||||
echo "Go ${REQUIRED_GO} already installed - skipping download"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ jobs:
|
|||
|
||||
- name: Set up Go
|
||||
run: |
|
||||
REQUIRED_GO="${GO_VERSION}"
|
||||
REQUIRED_GO="1.25.0"
|
||||
if command -v go &> /dev/null && go version | grep -q "go${REQUIRED_GO}"; then
|
||||
echo "Go ${REQUIRED_GO} already installed - skipping download"
|
||||
else
|
||||
|
|
@ -141,7 +141,7 @@ jobs:
|
|||
|
||||
- name: Set up Go (fast)
|
||||
run: |
|
||||
REQUIRED_GO="${GO_VERSION}"
|
||||
REQUIRED_GO="1.25.0"
|
||||
if command -v go &> /dev/null && go version | grep -q "go${REQUIRED_GO}"; then
|
||||
echo "Go ${REQUIRED_GO} already installed - skipping download"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ concurrency:
|
|||
cancel-in-progress: false
|
||||
|
||||
env:
|
||||
GO_VERSION: '1.21'
|
||||
GO_VERSION: '1.25.0'
|
||||
HUGO_VERSION: ${{ vars.HUGO_VERSION || '0.125.7' }}
|
||||
FORGEJO_PAGES_BRANCH: ${{ vars.FORGEJO_PAGES_BRANCH || 'pages' }}
|
||||
FORGEJO_DOCS_BASE_URL: ${{ vars.FORGEJO_DOCS_BASE_URL || '/' }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue