Skip to content

Commit e75b7be

Browse files
(fix): Fix Build Image workflow (#158)
This commit fixes build-image workflow. Recent [changes](#148 ) were made to identify Go version using go.mod file. This requires go.mod file to be available before setting up Go. Workflow failure: https://github.com/llamastack/llama-stack-k8s-operator/actions/runs/17467245024 Approved-by: nathan-weinberg Approved-by: rhdedgar Approved-by: leseb
1 parent b9fb361 commit e75b7be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
1414
runs-on: ubuntu-24.04
1515
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
18+
1619
- name: Set up Go 1.24
1720
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1821
with:
1922
go-version-file: go.mod
2023

21-
- name: Checkout code
22-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
23-
2424
- name: Login to Quay.io
2525
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
2626
with:

0 commit comments

Comments
 (0)