Skip to content

Commit f4c81a2

Browse files
committed
Merge remote-tracking branch 'origin/main' into chore/a11y-storybook-form-component
2 parents 94b7a73 + 51345b3 commit f4c81a2

193 files changed

Lines changed: 1202 additions & 1204 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/app-backend-codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
config-file: ${{ steps.codeql-config.outputs.config-file }}
6666

6767
- name: Build solution
68-
run: dotnet build solutions/Src.sln -v m
68+
run: dotnet build solutions/Src.slnx -v m
6969

7070
- name: Perform CodeQL Analysis
7171
uses: github/codeql-action/analyze@5c8a8a642e79153f5d047b10ec1cba1d1cc65699 # v3

.github/workflows/app-backend-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build backend
5757
working-directory: ${{ matrix.os.workingDir }}
5858
run: |
59-
dotnet build solutions/All.sln -v m
59+
dotnet build solutions/All.slnx -v m
6060
6161
- name: Download built frontend
6262
if: matrix.os.id == 'ubuntu-latest'
@@ -69,19 +69,19 @@ jobs:
6969
if: matrix.os.id != 'ubuntu-latest'
7070
working-directory: ${{ matrix.os.workingDir }}
7171
run: |
72-
dotnet test solutions/All.sln -v m --no-restore --no-build --filter "Category!=Integration"
72+
dotnet test solutions/All.slnx -v m --no-restore --no-build --filter "Category!=Integration"
7373
- name: Test (main tests)
7474
if: matrix.os.id == 'ubuntu-latest'
7575
working-directory: ${{ matrix.os.workingDir }}
7676
run: |
77-
dotnet test solutions/All.sln -v m --no-restore --no-build --filter "Category!=Integration"
77+
dotnet test solutions/All.slnx -v m --no-restore --no-build --filter "Category!=Integration"
7878
- name: Setup studioctl
7979
if: matrix.os.id == 'ubuntu-latest'
8080
uses: ./.github/actions/setup-studioctl
8181
- name: Test (integration tests)
8282
if: matrix.os.id == 'ubuntu-latest'
8383
working-directory: ${{ matrix.os.workingDir }}
8484
run: |
85-
dotnet test solutions/All.sln --no-restore --no-build --logger "console;verbosity=detailed" --filter "Category=Integration"
85+
dotnet test solutions/All.slnx --no-restore --no-build --logger "console;verbosity=detailed" --filter "Category=Integration"
8686
env:
8787
SKIP_FRONTEND_BUILD: true

.github/workflows/app-codelists-codeql.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,13 @@ jobs:
6060
queries: ${{ steps.codeql-config.outputs.queries }}
6161
config-file: ${{ steps.codeql-config.outputs.config-file }}
6262

63+
- name: Setup .NET
64+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
65+
with:
66+
global-json-file: src/App/codelists/global.json
67+
6368
- name: Build solution
64-
run: dotnet build solutions/Src.sln -v m
69+
run: dotnet build solutions/Src.slnx -v m
6570

6671
- name: Perform CodeQL Analysis
6772
uses: github/codeql-action/analyze@5c8a8a642e79153f5d047b10ec1cba1d1cc65699 # v3

.github/workflows/app-codelists-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
3838
with:
3939
dotnet-version: |
40-
8.0.x
40+
10.0.x
4141
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4242
with:
4343
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
4444
- name: Build
4545
working-directory: ${{ matrix.os.workingDir }}
4646
run: |
47-
dotnet build Altinn.Codelists.sln -v m
47+
dotnet build Altinn.Codelists.slnx -v m
4848
- name: Test
4949
working-directory: ${{ matrix.os.workingDir }}
5050
run: |
51-
dotnet test Altinn.Codelists.sln -v m
51+
dotnet test Altinn.Codelists.slnx -v m

.github/workflows/app-fileanalyzers-codeql.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,13 @@ jobs:
6060
queries: ${{ steps.codeql-config.outputs.queries }}
6161
config-file: ${{ steps.codeql-config.outputs.config-file }}
6262

63+
- name: Setup .NET
64+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
65+
with:
66+
global-json-file: src/App/fileanalyzers/global.json
67+
6368
- name: Build solution
64-
run: dotnet build solutions/Src.sln -v m
69+
run: dotnet build solutions/Src.slnx -v m
6570

6671
- name: Perform CodeQL Analysis
6772
uses: github/codeql-action/analyze@5c8a8a642e79153f5d047b10ec1cba1d1cc65699 # v3

.github/workflows/app-fileanalyzers-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5
3838
with:
3939
dotnet-version: |
40-
8.0.x
40+
10.0.x
4141
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4242
with:
4343
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
4444
- name: Build
4545
working-directory: ${{ matrix.os.workingDir }}
4646
run: |
47-
dotnet build Altinn.FileAnalyzers.sln -v m
47+
dotnet build Altinn.FileAnalyzers.slnx -v m
4848
- name: Test
4949
working-directory: ${{ matrix.os.workingDir }}
5050
run: |
51-
dotnet test Altinn.FileAnalyzers.sln -v m
51+
dotnet test Altinn.FileAnalyzers.slnx -v m

infra/observability/base/gateway.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
altinn.studio/otel-collector: otel-gateway
77
spec:
88
mode: deployment
9-
image: ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:0.144.0
9+
image: ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:0.148.0
1010
serviceAccount: otel-collector
1111
upgradeStrategy: automatic
1212
replicas: 1

infra/observability/base/router.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
altinn.studio/otel-collector: otel-router
77
spec:
88
mode: deployment
9-
image: ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:0.144.0
9+
image: ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:0.148.0
1010
serviceAccount: otel-collector
1111
upgradeStrategy: automatic
1212
replicas: 1
@@ -42,7 +42,7 @@ spec:
4242
resource_attributes:
4343
k8s.cluster.name:
4444
enabled: true
45-
k8sattributes:
45+
k8s_attributes:
4646
auth_type: 'serviceAccount'
4747
wait_for_metadata: true
4848
wait_for_metadata_timeout: 10s

infra/observability/runtime/overlay/patches/router-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ spec:
3232
pipelines:
3333
traces:
3434
receivers: [otlp]
35-
processors: [resourcedetection/aks, k8sattributes, resource/environment, transform/drop, batch]
35+
processors: [resourcedetection/aks, k8s_attributes, resource/environment, transform/drop, batch]
3636
exporters: [loadbalancing/traces]
3737
metrics:
3838
receivers: [otlp]
3939
exporters: [nop]
4040
logs:
4141
receivers: [otlp]
42-
processors: [filter/logs, resourcedetection/aks, k8sattributes, resource/environment, transform/drop, batch]
42+
processors: [filter/logs, resourcedetection/aks, k8s_attributes, resource/environment, transform/drop, batch]
4343
exporters: [loadbalancing/logs]

infra/observability/studio/overlay/patches/router-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ spec:
3232
pipelines:
3333
traces:
3434
receivers: [otlp]
35-
processors: [resourcedetection/aks, k8sattributes, resource/environment, transform/drop, batch]
35+
processors: [resourcedetection/aks, k8s_attributes, resource/environment, transform/drop, batch]
3636
exporters: [loadbalancing/traces]
3737
metrics:
3838
receivers: [otlp]
3939
exporters: [nop]
4040
logs:
4141
receivers: [otlp]
42-
processors: [filter/logs, resourcedetection/aks, k8sattributes, resource/environment, transform/drop, batch]
42+
processors: [filter/logs, resourcedetection/aks, k8s_attributes, resource/environment, transform/drop, batch]
4343
exporters: [loadbalancing/logs]

0 commit comments

Comments
 (0)