Compare commits

...

4 Commits

Author SHA1 Message Date
argoyle 9d56171a31 Merge pull request 'feat: migrate from GitLab CI to Gitea Actions' (#307) from feat/gitea-actions into main
cron-checker / test (push) Successful in 4m5s
cron-checker / vulnerabilities (push) Successful in 4m53s
Reviewed-on: #307
2026-01-08 14:36:41 +00:00
argoyle 8582f07d3f feat: migrate from GitLab CI to Gitea Actions
cron-checker / vulnerabilities (pull_request) Successful in 1m46s
cron-checker / test (pull_request) Successful in 2m17s
2026-01-08 15:21:26 +01:00
argoyle ad1db6b5e3 Merge branch 'renovate/golang-1.25.5' into 'master'
chore(deps): update golang:1.25.5 docker digest to ad03ba9

See merge request unboundsoftware/cron-checker!302
2025-12-30 17:42:31 +01:00
Renovate 85f607ac20 chore(deps): update golang:1.25.5 docker digest to ad03ba9 2025-12-30 04:03:31 +00:00
2 changed files with 31 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
name: cron-checker
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Run tests
run: go test -race -coverprofile=coverage.txt ./...
vulnerabilities:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Check vulnerabilities
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM amd64/golang:1.25.5@sha256:0c27bcf0df81eca89f87e1e78be5ad5e36487f0eaf71cd900ba14ee7621d3e70 as build
FROM amd64/golang:1.25.5@sha256:ad03ba93327b8a6143b49373790b5d92c28067bdb814418509466122ee9c9e63 as build
WORKDIR /build
ENV CGO_ENABLED=0
ADD . /build