Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new set of GitHub Actions #11

Merged
merged 4 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "gomod" # See documentation for possible values
directories:
- "/" # Location of package manifests
groups:
k8s:
patterns:
- "k8s.io*"
update-types:
- "minor"
- "patch"
go-x:
patterns:
- "golang.org/x/*"
update-types:
- "minor"
- "patch"
schedule:
interval: "weekly"
18 changes: 18 additions & 0 deletions .github/workflows/daily-markdown-link-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Documentation
run-name: ${{github.event.pull_request.title}}
on:
schedule:
# Run everyday at 5:00 AM
- cron: "0 5 * * *"
jobs:
daily-markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.mlc.config.json'
folder-path: '.'
max-depth: -1
19 changes: 19 additions & 0 deletions .github/workflows/vuln-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Security
on:
push:
branches: [ "main" ]
pull_request:
permissions:
contents: read
jobs:
govuln:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: vulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.23.4
go-package: ./...
Loading