Skip to content

fix(deps): update module github.com/onsi/ginkgo/v2 to v2.22.2 (#1472) #17

fix(deps): update module github.com/onsi/ginkgo/v2 to v2.22.2 (#1472)

fix(deps): update module github.com/onsi/ginkgo/v2 to v2.22.2 (#1472) #17

Workflow file for this run

name: Build Go Project
on:
push:
pull_request:
merge_group:
types:
- checks_requested
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: 1.23.x
- name: Set up node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: "20.9"
cache: npm
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: bin
key: ${{ runner.os }}-${{ hashFiles('Makefile', 'go.mod', 'go.sum') }}
- name: Install dependencies
run: npm i
- run: make all
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: artifacts-${{ runner.os }}-${{ runner.arch }}
path: dist/
- name: Check if repository is clean
run: |
STATUS="$(git status --porcelain)"
if [ -z "$STATUS" ]; then
echo Repository is clean.
else
echo "Repository is not clean:
$STATUS"
exit 1
fi