From 17fa33520a12f76f0bab24794edbc51031356dcb Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 7 Aug 2025 18:06:31 +0300 Subject: [PATCH] fix(ci): add build step to security workflow (#32) * fix(ci): add build step to security workflow * chore(ci): pin action --- .github/workflows/security.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 1fea1bf..7298f39 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -97,6 +97,16 @@ jobs: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - name: Set up Go + uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5 + with: + go-version-file: 'go.mod' + check-latest: true + + - name: Build the bin + shell: bash + run: make build + - name: Build Docker image run: docker build -t gh-action-readme:test .