Skip to content

Commit 05a6966

Browse files
chore: dev to main PR
2 parents 1870eb5 + 817791c commit 05a6966

89 files changed

Lines changed: 4706 additions & 4808 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/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ updates:
3535
# npm dependencies - grouped
3636
- package-ecosystem: "npm"
3737
directories:
38-
- "/src/app/frontend"
39-
- "/src/app/frontend-server"
38+
- "/src/App"
39+
- "/src/App/server"
4040
schedule:
4141
interval: "monthly"
4242
target-branch: "dependabotchanges"

.github/workflows/azure-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Set timestamp and env name
3838
shell: bash

.github/workflows/broken-links-checker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Get changed markdown files (PR only)
2626
id: changed-markdown-files
2727
if: github.event_name == 'pull_request'
28-
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v46
28+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v46
2929
with:
3030
files: |
3131
**/*.md
@@ -35,7 +35,7 @@ jobs:
3535
- name: Check Broken Links in Changed Markdown Files
3636
id: lychee-check-pr
3737
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
38-
uses: lycheeverse/lychee-action@v2.7.0
38+
uses: lycheeverse/lychee-action@v2.8.0
3939
with:
4040
args: >
4141
--verbose --no-progress --exclude ^https?://
@@ -48,7 +48,7 @@ jobs:
4848
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4949
id: lychee-check-manual
5050
if: github.event_name == 'workflow_dispatch'
51-
uses: lycheeverse/lychee-action@v2.7.0
51+
uses: lycheeverse/lychee-action@v2.8.0
5252
with:
5353
args: >
5454
--verbose --no-progress --exclude ^https?://

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.sha }}
2121

22-
- uses: codfish/semantic-release-action@v3
22+
- uses: codfish/semantic-release-action@v5
2323
id: semantic
2424
with:
2525
tag-format: 'v${version}'

.github/workflows/docker-build.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
- demo
99
paths:
1010
- 'src/backend/**'
11-
- 'src/app/frontend/**'
12-
- 'src/app/frontend-server/**'
11+
- 'src/App/**'
1312
- '.github/workflows/docker-build.yml'
1413
pull_request:
1514
types:
@@ -23,8 +22,7 @@ on:
2322
- demo
2423
paths:
2524
- 'src/backend/**'
26-
- 'src/app/frontend/**'
27-
- 'src/app/frontend-server/**'
25+
- 'src/App/**'
2826
- '.github/workflows/docker-build.yml'
2927
workflow_dispatch:
3028

@@ -44,10 +42,10 @@ jobs:
4442

4543
steps:
4644
- name: Checkout repository
47-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4846

4947
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v3
48+
uses: docker/setup-buildx-action@v4
5149

5250
- name: Login to Azure (OIDC)
5351
if: ${{ (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo')) || (github.event_name == 'workflow_dispatch' && (github.ref_name == 'dependabotchanges'||github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo')) }}
@@ -86,17 +84,17 @@ jobs:
8684
8785
fi
8886
- name: Build and Push Docker Image for Frontend Server
89-
uses: docker/build-push-action@v6
87+
uses: docker/build-push-action@v7
9088
with:
91-
context: ./src/app
92-
file: ./src/app/WebApp.Dockerfile
89+
context: ./src/App
90+
file: ./src/App/WebApp.Dockerfile
9391
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' || github.ref_name == 'dependabotchanges' }}
9492
tags: |
9593
${{ secrets.ACR_LOGIN_SERVER || 'acrlogin.azurecr.io' }}/content-gen-app:${{ steps.determine_tag.outputs.tagname }}
9694
${{ secrets.ACR_LOGIN_SERVER || 'acrlogin.azurecr.io' }}/content-gen-app:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }}
9795
9896
- name: Build and Push Docker Image for Backend Server
99-
uses: docker/build-push-action@v6
97+
uses: docker/build-push-action@v7
10098
with:
10199
context: ./src/backend
102100
file: ./src/backend/ApiApp.Dockerfile

.github/workflows/job-docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "Generated unique Docker tag: $UNIQUE_TAG"
4747
4848
- name: Set up Docker Buildx
49-
uses: docker/setup-buildx-action@v3
49+
uses: docker/setup-buildx-action@v4
5050

5151
- name: Login to Azure (OIDC)
5252
uses: azure/login@v2
@@ -65,16 +65,16 @@ jobs:
6565
env:
6666
DOCKER_BUILD_SUMMARY: false
6767
with:
68-
context: ./src/app
69-
file: ./src/app/WebApp.Dockerfile
68+
context: ./src/App
69+
file: ./src/App/WebApp.Dockerfile
7070
push: true
7171
tags: |
7272
${{ secrets.ACR_TEST_LOGIN_SERVER }}/content-gen-app:${{ steps.generate_docker_tag.outputs.AZURE_ENV_IMAGE_TAG }}
7373
${{ secrets.ACR_TEST_LOGIN_SERVER }}/content-gen-app:${{ steps.generate_docker_tag.outputs.AZURE_ENV_IMAGE_TAG }}_${{ github.run_number }}
7474
7575
- name: Build and Push Docker Image for Backend Server
7676
id: build_push_backend
77-
uses: docker/build-push-action@v6
77+
uses: docker/build-push-action@v7
7878
env:
7979
DOCKER_BUILD_SUMMARY: false
8080
with:

.github/workflows/pr-title-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event_name != 'merge_group' }}
1919
steps:
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/stale-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
env:
6868
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969
- name: Upload CSV Report of Inactive Branches
70-
uses: actions/upload-artifact@v6
70+
uses: actions/upload-artifact@v7
7171
with:
7272
name: merged-branches-report
7373
path: merged_branches_report.csv

.github/workflows/test-automation-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136

137137
- name: Upload test report
138138
id: upload_report
139-
uses: actions/upload-artifact@v6
139+
uses: actions/upload-artifact@v7
140140
if: always()
141141
with:
142142
name: test-report

0 commit comments

Comments
 (0)