Skip to content

Merge pull request #126 from samuelkarp/vinayakankugoyal-security-adv… #157

Merge pull request #126 from samuelkarp/vinayakankugoyal-security-adv…

Merge pull request #126 from samuelkarp/vinayakankugoyal-security-adv… #157

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Project CI
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Setup Go binary path
shell: bash
run: |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Check out code
uses: actions/checkout@v3
with:
path: src/github.com/containerd/project
fetch-depth: 25
- name: Install dependencies
env:
GO111MODULE: on
run: |
go install github.com/vbatts/git-validation@latest
go install github.com/kunalkushwaha/ltag@latest
- name: Check DCO/whitespace/commit message
env:
GITHUB_COMMIT_URL: ${{ github.event.pull_request.commits_url }}
DCO_VERBOSITY: "-q"
DCO_RANGE: ""
working-directory: src/github.com/containerd/project
run: |
if [ -z "${GITHUB_COMMIT_URL}" ]; then
DCO_RANGE=$(jq -r '.before +".."+ .after' ${GITHUB_EVENT_PATH})
else
DCO_RANGE=$(curl ${GITHUB_COMMIT_URL} | jq -r '.[0].parents[0].sha +".."+ .[-1].sha')
fi
script/validate/dco
- name: Check file headers
run: script/validate/fileheader
working-directory: src/github.com/containerd/project