fix(ci): add build step to security workflow (#32)

* fix(ci): add build step to security workflow

* chore(ci): pin action
This commit is contained in:
2025-08-07 18:06:31 +03:00
committed by GitHub
parent 51940e9094
commit 17fa33520a

View File

@@ -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 .