fix: bump crypto | CVE-2024-45337 #520
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint & Test Code | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
- "!master" | |
env: | |
go_version: 1.22 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-test-code: | |
name: Lint & Test Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/[email protected] | |
with: | |
go-version: "${{ env.go_version }}" | |
- name: Setup Golang caches | |
uses: actions/[email protected] | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-golang- | |
- name: Setup Just | |
uses: extractions/setup-just@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check package files up to date | |
run: | | |
just tidy | |
git diff --exit-code -- go.* pkg/config-api-client/go.* || exit 1 | |
- name: Run Code Linting Test | |
run: just lint | |
- name: Run Tests | |
run: | | |
just test | |
just coverage | |
- name: Check Provider docs up to date | |
run: | | |
just generate-provider-docs | |
git add --all docs | |
git diff --cached --exit-code -- docs || exit 1 | |
- name: Check Provider docs valid | |
run: just validate-provider-docs | |
- name: Upload Code Coverage Report | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./pkg/config-api-client/.coverage,.coverage | |
flage: client,provider | |
fail_ci_if_error: true |