Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 359e1f66b9 | |||
| 554819a17f | |||
| bb0a74b6a1 | |||
| f1e78d3b40 | |||
| a38da7e7f4 | |||
| 0074e7a74c |
@@ -11,7 +11,7 @@ jobs:
|
||||
if: gitea.event_name == 'pull_request'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: 'stable'
|
||||
@@ -33,7 +33,7 @@ jobs:
|
||||
go install github.com/vladopajic/go-test-coverage/v2@latest
|
||||
go-test-coverage --config ./.testcoverage.yml --github-action-output
|
||||
- name: Restore baseline coverage
|
||||
uses: actions/cache/restore@v5
|
||||
uses: actions/cache/restore@v6
|
||||
with:
|
||||
path: coverage-baseline.txt
|
||||
key: coverage-baseline-${{ gitea.run_id }}
|
||||
@@ -73,7 +73,7 @@ jobs:
|
||||
if: gitea.event_name == 'push'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: 'stable'
|
||||
@@ -88,7 +88,7 @@ jobs:
|
||||
- name: Write baseline file
|
||||
run: echo "${{ steps.coverage.outputs.total-coverage }}" > coverage-baseline.txt
|
||||
- name: Save baseline to cache
|
||||
uses: actions/cache/save@v5
|
||||
uses: actions/cache/save@v6
|
||||
with:
|
||||
path: coverage-baseline.txt
|
||||
key: coverage-baseline-${{ gitea.run_id }}
|
||||
@@ -97,7 +97,7 @@ jobs:
|
||||
if: gitea.event_name == 'pull_request'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: 'stable'
|
||||
|
||||
@@ -13,7 +13,7 @@ jobs:
|
||||
env:
|
||||
SKIP: no-commit-to-branch
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: stable
|
||||
|
||||
+13
-1
@@ -2,10 +2,22 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.1.1] - 2026-06-26
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- *(deps)* Update module github.com/stretchr/testify to v1.11.1 (#2)
|
||||
|
||||
### ⚙️ Miscellaneous Tasks
|
||||
|
||||
- *(ci)* Add shared-lib scaffolding and functional coverage gate (#4)
|
||||
- *(deps)* Update actions/checkout action to v7
|
||||
- *(deps)* Update actions/cache action to v6
|
||||
|
||||
## [0.1.0] - 2026-06-15
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Initial version: signed `user` header middleware (ADR-0005) and the `MissingDeployedSecrets` startup guard (ADR-0005/0006), extracted from the per-service copies.
|
||||
- Initial shared auth module
|
||||
|
||||
<!-- generated by git-cliff -->
|
||||
|
||||
Reference in New Issue
Block a user