Skip to content

Commit 5a2d847

Browse files
authored
Merge branch 'dev' into fix/sonarqube-optional-service-key
2 parents 81f3687 + 665914d commit 5a2d847

221 files changed

Lines changed: 100616 additions & 97177 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/k8s-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
# databases, broker and k8s are independent, so we don't need to test each combination
1717
# lastest k8s version (https://kubernetes.io/releases/) and the oldest officially supported version
1818
# are tested (https://kubernetes.io/releases/)
19-
- k8s: 'v1.35.1' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
19+
- k8s: 'v1.35.2' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
2020
os: debian
21-
- k8s: '1.32.12' # renovate: datasource=custom.endoflife-oldest-maintained depName=kubernetes
21+
- k8s: '1.33.9' # renovate: datasource=custom.endoflife-oldest-maintained depName=kubernetes
2222
os: debian
2323
steps:
2424
- name: Checkout

.github/workflows/renovate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
persist-credentials: false
1919

2020
- name: validate
21-
uses: suzuki-shunsuke/github-action-renovate-config-validator@ca480cb7ec89a9e1cd8c214ad33bda1617184027 # v2.0.0
21+
uses: suzuki-shunsuke/github-action-renovate-config-validator@ee9f69e1f683ed0d08225086482b34fc9abe9300 # v2.1.0
2222
with:
2323
strict: "true"
24-
validator_version: 43.31.7 # renovate: datasource=github-releases depName=renovatebot/renovate
24+
validator_version: 43.51.2 # renovate: datasource=github-releases depName=renovatebot/renovate

.github/workflows/update-sample-data.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- cron: '0 0 1 1,4,7,10 *'
1212

1313
jobs:
14-
run-binary-and-create-pr:
14+
run-script-and-create-pr:
1515
runs-on: ubuntu-latest
1616
steps:
1717
# Checkout the repository
@@ -24,30 +24,20 @@ jobs:
2424
run: |
2525
scripts/fixture-updater.py dojo/fixtures/defect_dojo_sample_data.json
2626
mv output.json dojo/fixtures/defect_dojo_sample_data.json
27+
./fixture-updater dojo/fixtures/defect_dojo_sample_data_locations.json
28+
mv output.json dojo/fixtures/defect_dojo_sample_data_locations.json
2729
2830
- name: Configure git
2931
run: |
3032
git config --global user.name "${{ env.GIT_USERNAME }}"
3133
git config --global user.email "${{ env.GIT_EMAIL }}"
3234
33-
- name: Create and switch to a new branch
34-
run: |
35-
git checkout -b update-file-$(date +%Y%m%d%H%M%S)
36-
git add dojo/fixtures/defect_dojo_sample_data.json
37-
git commit -m "Update sample data"
38-
39-
- name: Push branch
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
run: |
43-
git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)
44-
4535
- name: Create Pull Request
4636
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
4737
with:
4838
token: ${{ secrets.GITHUB_TOKEN }}
4939
commit-message: "Update sample data"
50-
branch: ${{ github.ref_name || 'dev'}}
40+
branch: update-sample-data
5141
base: dev
5242
title: "Update sample data"
53-
body: "This pull request updates the sample data."
43+
body: "This pull request updates the timestamps in the sample data to keep them up to date."

Dockerfile.django-debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Dockerfile.nginx to use the caching mechanism of Docker.
66

77
# Ref: https://devguide.python.org/#branchstatus
8-
FROM python:3.13.12-slim-trixie@sha256:f50f56f1471fc430b394ee75fc826be2d212e35d85ed1171ac79abbba485dce9 AS base
8+
FROM python:3.13.12-slim-trixie@sha256:8bc60ca09afaa8ea0d6d1220bde073bacfedd66a4bf8129cbdc8ef0e16c8a952 AS base
99
FROM base AS build
1010
WORKDIR /app
1111
RUN \

Dockerfile.integration-tests-debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
FROM openapitools/openapi-generator-cli:v7.20.0@sha256:fa4add01856e44becf70674164df354d61bd37ba0f444d27be949801e013921b AS openapitools
55
# currently only supports x64, no arm yet due to chrome and selenium dependencies
6-
FROM python:3.13.12-slim-trixie@sha256:f50f56f1471fc430b394ee75fc826be2d212e35d85ed1171ac79abbba485dce9 AS build
6+
FROM python:3.13.12-slim-trixie@sha256:8bc60ca09afaa8ea0d6d1220bde073bacfedd66a4bf8129cbdc8ef0e16c8a952 AS build
77
WORKDIR /app
88
RUN \
99
apt-get -y update && \

README.md

Lines changed: 9 additions & 14 deletions

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "defectdojo",
3-
"version": "2.56.0-dev",
3+
"version": "2.57.0-dev",
44
"license" : "BSD-3-Clause",
55
"private": true,
66
"dependencies": {

docker-compose.override.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ services:
7272
protocol: tcp
7373
mode: host
7474
"webhook.endpoint":
75-
image: mccutchen/go-httpbin:2.20.0@sha256:b1620821b6ff191d911629f87a720b88df5397c2554045f1cfb1ffde17c9b898
75+
image: mccutchen/go-httpbin:2.21.0@sha256:809250d14e94397f4729f617931068a9ea048231fc1a11c9e3c7cb8c28bbab8d

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ services:
120120
source: ./docker/extra_settings
121121
target: /app/docker/extra_settings
122122
postgres:
123-
image: postgres:18.2-alpine@sha256:035b9ab53cfa147d7202b61f5f7782b939ae815b7d6bc81c96b7b42ff1fca950
123+
image: postgres:18.3-alpine@sha256:4da1a4828be12604092fa55311276f08f9224a74a62dcb4708bd7439e2a03911
124124
environment:
125125
PGDATA: /var/lib/postgresql/data
126126
POSTGRES_DB: ${DD_DATABASE_NAME:-defectdojo}

docs/assets/images/pq_ss1.png

542 KB

0 commit comments

Comments
 (0)