Skip to content

build(deps): bump System.Text.Json from 6.0.2 to 6.0.10 in /source/JsonSerialization/source/JsonSerialization #1091

build(deps): bump System.Text.Json from 6.0.2 to 6.0.10 in /source/JsonSerialization/source/JsonSerialization

build(deps): bump System.Text.Json from 6.0.2 to 6.0.10 in /source/JsonSerialization/source/JsonSerialization #1091

Workflow file for this run

# Copyright 2020 Energinet DataHub A/S
#
# Licensed under the Apache License, Version 2.0 (the "License2");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI orchestrator
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
contents: write
id-token: write
actions: write
security-events: write
jobs:
#
# License and Markdown Check
#
ci_base:
uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v13
secrets:
dh3serviceaccount_privatekey: ${{ secrets.dh3serviceaccount_privatekey }}
#
# Detect changes to start relevant workflows
#
changes:
uses: ./.github/workflows/detect-changes.yml
app_common:

Check failure on line 43 in .github/workflows/ci-orchestrator.yml

View workflow run for this annotation

GitHub Actions / CI orchestrator

Invalid workflow file

The workflow is not valid. .github/workflows/ci-orchestrator.yml (Line: 43, Col: 3): Error calling workflow 'Energinet-DataHub/geh-core/.github/workflows/app-common-bundle-publish.yml@5deda466f1a9fe86fe68f5cdccb0806fa708800b'. The nested job 'build_and_publish' is requesting 'checks: write, issues: read', but is only allowed 'checks: none, issues: none'.
needs: changes
if: ${{ needs.changes.outputs.app_common == 'true' }}
uses: ./.github/workflows/app-common-bundle-publish.yml
secrets: inherit
featuremanagement:
needs: changes
if: ${{ needs.changes.outputs.featuremanagement == 'true' }}
uses: ./.github/workflows/featuremanagement-ci.yml
secrets: inherit
json_serialization:
needs: changes
if: ${{ needs.changes.outputs.json_serialization == 'true' }}
uses: ./.github/workflows/json-serialization-bundle-publish.yml
secrets: inherit
logging:
needs: changes
if: ${{ needs.changes.outputs.logging == 'true' }}
uses: ./.github/workflows/logging-bundle-publish.yml
secrets: inherit
messaging:
needs: changes
if: ${{ needs.changes.outputs.messaging == 'true' }}
uses: ./.github/workflows/messaging-bundle-publish.yml
secrets: inherit
testcommon:
needs: changes
if: ${{ needs.changes.outputs.testcommon == 'true' }}
uses: ./.github/workflows/testcommon-bundle-publish.yml
secrets: inherit
databricks:
needs: changes
if: ${{ needs.changes.outputs.databricks == 'true' }}
uses: ./.github/workflows/databricks-bundle-publish.yml
secrets: inherit
outbox:
needs: changes
if: ${{ needs.changes.outputs.outbox == 'true' }}
uses: ./.github/workflows/outbox-bundle-publish.yml
secrets: inherit
#
# Branch policy status check
#
allow_merge_ci_orchestrator:
runs-on: ubuntu-latest
needs:
[
ci_base,
app_common,
featuremanagement,
json_serialization,
logging,
messaging,
testcommon,
databricks,
]
if: |
always()
steps:
- name: Verify if merge is allowed
run: |
echo "${{ toJSON(needs) }}"
if [[ ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} = true ]]; then
echo "Failed"
exit 1
fi