chore(deps): bump k8s.io/client-go from 0.31.3 to 0.31.4 #222
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 and Release | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
paths: | |
- '**.go' | |
- '**.mod' | |
- '**.sum' | |
- 'Dockerfile' | |
pull_request: | |
branches: | |
- 'develop' | |
- 'main' | |
paths: | |
- '**.go' | |
- '**.mod' | |
- '**.sum' | |
- 'Dockerfile' | |
env: | |
GO_VERSION: 1.21 | |
jobs: | |
# build workflow | |
Test: | |
needs: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up go ${{env.GO_VERSION}} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Run build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: set up go ${{env.GO_VERSION}} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
cache: false | |
id: go | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout 5m | |
Semantic-Release: | |
if: ${{ github.event_name == 'push' }} | |
needs: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.SEMANTIC_TOKEN }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
- name: Setup package.json | |
run: echo '{"name":"semantic-release", "devDependencies":{"@semantic-release/changelog":"^6.0.1","@semantic-release/exec":"^6.0.3","@semantic-release/git":"^10.0.1","@semantic-release/release-notes-generator":"^10.0.3","conventional-changelog-conventionalcommits":"^5.0.0","semantic-release":"^21.0.2"}}' > package.json | |
- name: Install dependencies | |
run: npm install | |
- name: Release | |
run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_TOKEN: ${{ secrets.SEMANTIC_TOKEN }} |