Skip to content

Commit 062b866

Browse files
authored
Merge pull request #927 from Wikid82/feature/beta-release
fix: dependency updates, CVE suppression management, and Renovate version constraints
2 parents f0147b1 + a5724ae commit 062b866

28 files changed

Lines changed: 277 additions & 126 deletions

.github/renovate.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,24 @@
292292
"matchPackageNames": ["caddy"],
293293
"allowedVersions": "<3.0.0"
294294
},
295+
{
296+
"description": "Go: keep pgx within v4 (CrowdSec requires pgx/v4 module path)",
297+
"matchDatasources": ["go"],
298+
"matchPackageNames": ["github.com/jackc/pgx/v4"],
299+
"allowedVersions": "<5.0.0"
300+
},
301+
{
302+
"description": "Go: keep go-jose/v3 within v3 (v4 is a different Go module path)",
303+
"matchDatasources": ["go"],
304+
"matchPackageNames": ["github.com/go-jose/go-jose/v3"],
305+
"allowedVersions": "<4.0.0"
306+
},
307+
{
308+
"description": "Go: keep go-jose/v4 within v4 (v5 would be a different Go module path)",
309+
"matchDatasources": ["go"],
310+
"matchPackageNames": ["github.com/go-jose/go-jose/v4"],
311+
"allowedVersions": "<5.0.0"
312+
},
295313
{
296314
"description": "Safety: Keep MAJOR updates separate and require manual review",
297315
"matchUpdateTypes": ["major"],

.github/workflows/auto-label-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
issues: write
1919
steps:
2020
- name: Auto-label based on title and body
21-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
21+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
2222
with:
2323
script: |
2424
const issue = context.payload.issue;

.github/workflows/caddy-major-monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Check for Caddy v3 and open issue
21-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
21+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
2222
with:
2323
script: |
2424
const upstream = { owner: 'caddyserver', repo: 'caddy' };

.github/workflows/codecov-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
140140
- name: Upload test output artifact
141141
if: always()
142-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
142+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
143143
with:
144144
name: backend-test-output
145145
path: backend/test-output.txt

.github/workflows/container-prune.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Upload GHCR prune artifacts
9090
if: always()
91-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
91+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
9292
with:
9393
name: prune-ghcr-log-${{ github.run_id }}
9494
path: |
@@ -159,7 +159,7 @@ jobs:
159159
160160
- name: Upload Docker Hub prune artifacts
161161
if: always()
162-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
162+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
163163
with:
164164
name: prune-dockerhub-log-${{ github.run_id }}
165165
path: |

.github/workflows/create-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
issues: write
1919
steps:
2020
- name: Create all project labels
21-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
21+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
2222
with:
2323
script: |
2424
const labels = [

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ jobs:
347347
348348
- name: Upload Image Artifact
349349
if: success() && steps.skip.outputs.skip_build != 'true' && env.TRIGGER_EVENT == 'pull_request'
350-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
350+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
351351
with:
352352
name: ${{ env.TRIGGER_EVENT == 'pull_request' && format('pr-image-{0}', env.TRIGGER_PR_NUMBER) || 'push-image' }}
353353
path: /tmp/charon-pr-image.tar

.github/workflows/docs-to-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Detect changed files
5555
id: changes
56-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
56+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
5757
env:
5858
COMMIT_SHA: ${{ github.event.workflow_run.head_sha || github.sha }}
5959
with:
@@ -95,7 +95,7 @@ jobs:
9595
9696
- name: Process issue files
9797
id: process
98-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
98+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
9999
env:
100100
DRY_RUN: ${{ github.event.inputs.dry_run || 'false' }}
101101
with:

0 commit comments

Comments
 (0)