chore: use org variables inside the CI
This commit is contained in:
parent
ba67a265c0
commit
fd6047a1b8
2 changed files with 3 additions and 3 deletions
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GO_VERSION: stable
|
||||
HUGO_VERSION: '0.117.0'
|
||||
HUGO_VERSION: ${{vars.HUGO_VERSION}}
|
||||
CGO_ENABLED: 0
|
||||
|
||||
steps:
|
||||
|
|
4
.github/workflows/pr.yml
vendored
4
.github/workflows/pr.yml
vendored
|
@ -13,8 +13,8 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GO_VERSION: stable
|
||||
GOLANGCI_LINT_VERSION: v1.56.0
|
||||
HUGO_VERSION: '0.117.0'
|
||||
GOLANGCI_LINT_VERSION: ${{vars.GOLANGCI_LINT_VERSION}}
|
||||
HUGO_VERSION: ${{vars.HUGO_VERSION}}
|
||||
CGO_ENABLED: 0
|
||||
LEGO_E2E_TESTS: CI
|
||||
MEMCACHED_HOSTS: localhost:11211
|
||||
|
|
Loading…
Reference in a new issue