Skip to content

chore(deps): bump github.com/fluxcd/kustomize-controller/api from 1.1.1 to 1.2.0 #106

chore(deps): bump github.com/fluxcd/kustomize-controller/api from 1.1.1 to 1.2.0

chore(deps): bump github.com/fluxcd/kustomize-controller/api from 1.1.1 to 1.2.0 #106

Workflow file for this run

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: 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: golangci-lint
uses: golangci/golangci-lint-action@v3
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 }}