Skip to content

build(deps): bump actions/setup-go from 5.0.2 to 6.4.0 #1471

build(deps): bump actions/setup-go from 5.0.2 to 6.4.0

build(deps): bump actions/setup-go from 5.0.2 to 6.4.0 #1471

Workflow file for this run

name: CI Build and Test for PR
permissions:
contents: read
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: check format
run: make check_format
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: build and test
run: make docker_tests
precommits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.9"
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: "1.26.1"
- name: run pre-commits
run: |
make precommit_install
pre-commit run -a
# If previous stage fails, print resolution steps
- if: ${{ failure() }}
name: Read for resolution steps
run: |
echo "Pre-commits failed! Run 'make precommit_install' then 'pre-commits run -a' to fix."
exit 1