Skip to content

Commit 50e21ea

Browse files
committed
Merge remote-tracking branch 'origin/dev' into split-legacy-cicd
2 parents 3782831 + d604c30 commit 50e21ea

424 files changed

Lines changed: 16993 additions & 1897 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/CODEOWNERS

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
1-
# Any kind of package updates only need 2 approvals,
2-
# So let's add three folks here
3-
requirements.txt @cneill @mtesauro @Maffooch
4-
# Any dockerfile or compose changes will need to be viewed by
5-
# these people
6-
Dockerfile.* @mtesauro @Maffooch
7-
docker-compose.* @mtesauro @Maffooch
8-
/docker/ @mtesauro @Maffooch
91
# Documentation changes
10-
/docs/content/ @paulOsinski @valentijnscholten @Maffooch
11-
# Kubernetes should be reviewed by reviewed first by those that know it
12-
/helm/ @cneill @kiblik @Maffooch
13-
# Anything UI related needs to be checked out by those with the eye for it
14-
/dojo/static/ @blakeaowens @Maffooch
15-
/dojo/templates/ @blakeaowens @Maffooch
16-
# Any model changes should be closely looked at
17-
/dojo/models.py @Maffooch
2+
/docs/content/ @paulOsinski @Maffooch
183
# All other code changes should be reviewed by someone
19-
* @Maffooch @mtesauro
4+
* @Maffooch @blakeaowens

.github/release-drafter.yml

Lines changed: 44 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -6,50 +6,65 @@ branches:
66

77
categories:
88
- title: '💣 Breaking changes'
9-
labels:
10-
- 'Breaking Changes'
9+
when:
10+
labels:
11+
- 'Breaking Changes'
1112
- title: '🚩 Changes to `settings.dist.py` / `local_settings.py`'
12-
labels:
13-
- 'settings_changes'
13+
when:
14+
labels:
15+
- 'settings_changes'
1416
- title: '🚩 Database migration'
15-
labels:
16-
- 'New Migration'
17+
when:
18+
labels:
19+
- 'New Migration'
1720
- title: '🚩 Requires hash code recomputation'
18-
labels:
19-
- 'hashcode-update-needed'
21+
when:
22+
labels:
23+
- 'hashcode-update-needed'
2024
- title: '🚩 Security'
21-
labels:
22-
- 'security'
25+
when:
26+
labels:
27+
- 'security'
2328
- title: '🚀 New importers'
24-
labels:
25-
- 'Import Scans'
29+
when:
30+
labels:
31+
- 'Import Scans'
2632
- title: '🚀 General features and enhancements'
27-
labels:
28-
- 'feature'
29-
- 'enhancement'
30-
- 'performance'
33+
when:
34+
labels:
35+
- 'feature'
36+
- 'enhancement'
37+
- 'performance'
3138
- title: '🚀 API features and enhancements'
32-
label: 'apiv2'
39+
when:
40+
label: 'apiv2'
3341
- title: '🐛 Bug Fixes'
34-
labels:
35-
- 'fix'
36-
- 'bugfix'
37-
- 'bug'
42+
when:
43+
labels:
44+
- 'fix'
45+
- 'bugfix'
46+
- 'bug'
3847
- title: 📝 Documentation updates
39-
label: 'documentation'
48+
when:
49+
label: 'documentation'
4050
- title: '🖌 Updates in UI'
41-
label: 'ui'
51+
when:
52+
label: 'ui'
4253
- title: '🗣 Updates in localization'
43-
label: 'localization'
54+
when:
55+
label: 'localization'
4456
- title: '🔧 Improved code quality with linters'
45-
label: 'lint'
57+
when:
58+
label: 'lint'
4659
- title: '⚙️ Improvemets of GitHub Actions'
47-
label: 'gha'
60+
when:
61+
label: 'gha'
4862
- title: '🧰 Maintenance'
4963
collapse-after: 3
50-
labels:
51-
- 'dependencies'
52-
- 'maintenance'
64+
when:
65+
labels:
66+
- 'dependencies'
67+
- 'maintenance'
5368
exclude-labels:
5469
- 'skip-changelog'
5570

.github/workflows/build-docker-images-for-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: echo "IMAGE_REPOSITORY=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
5050

5151
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
52+
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
5353

5454
- name: Build
5555
id: docker_build

.github/workflows/close-stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Close issues and PRs that are pending closure
19-
uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
19+
uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
2020
with:
2121
# Disable automatic stale marking - only close manually labeled items
2222
days-before-stale: -1
@@ -27,7 +27,7 @@ jobs:
2727
close-pr-message: 'This PR has been automatically closed because it was manually labeled as stale. If you believe this was closed in error, please reopen it and remove the stale label.'
2828

2929
- name: Close stale issues and PRs
30-
uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
30+
uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
3131
with:
3232
# Disable automatic stale marking - only close manually labeled items
3333
days-before-stale: -1

.github/workflows/fetch-oas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2626
with:
27-
ref: release/${{ env.release_version }}
27+
ref: ${{ env.release_version }}
2828

2929
- name: Load docker images
3030
run: |-

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
extended: true
2323

2424
- name: Setup Node
25-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
25+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
2626
with:
2727
node-version: '24.18.0' # TODO: Renovate helper might not be needed here - needs to be fully tested
2828

.github/workflows/k8s-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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.4' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
19+
- k8s: 'v1.35.6' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
2020
os: debian
2121
- k8s: '1.34.9' # renovate: datasource=custom.endoflife-oldest-maintained depName=kubernetes
2222
os: debian

.github/workflows/pr-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: "Autolabeler"
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0
18+
- uses: actions/labeler@b8dd2d9be0f68b860e7dae5dae7d772984eacd6d # v6.2.0
1919
with:
2020
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2121
sync-labels: true

.github/workflows/release-x-manual-docker-containers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "DOCKER_ORG=$(echo ${GITHUB_REPOSITORY%%/*} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
5353

5454
- name: Login to DockerHub
55-
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
55+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
5656
with:
5757
username: ${{ secrets.DOCKERHUB_USERNAME }}
5858
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Set up Docker Buildx
6666
id: buildx
67-
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
67+
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
6868

6969
# we cannot set any tags here, those are set on the merged digest in release-x-manual-merge-container-digests.yml
7070
- name: Build and push images

.github/workflows/release-x-manual-helm-chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
echo "chart_version=$(ls build | cut -d '-' -f 2,3 | sed 's|\.tgz||')" >> $GITHUB_ENV
7878
7979
- name: Create release ${{ inputs.release_number }}
80-
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
80+
uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3.0.2
8181
with:
8282
name: '${{ inputs.release_number }} 🌈'
8383
tag_name: ${{ inputs.release_number }}

0 commit comments

Comments
 (0)