Skip to content

chore: bump pydantic from 2.6.3 to 2.6.4 #278

chore: bump pydantic from 2.6.3 to 2.6.4

chore: bump pydantic from 2.6.3 to 2.6.4 #278

Workflow file for this run

name: Main branch CI
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '20 6 * * 0'
jobs:
check-libraries:
uses: canonical/sdcore-github-workflows/.github/workflows/check-libraries.yaml@main
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}
lint-report:
uses: canonical/sdcore-github-workflows/.github/workflows/lint-report.yaml@main
terraform-check:
uses: canonical/sdcore-github-workflows/.github/workflows/terraform.yaml@main
static-analysis:
uses: canonical/sdcore-github-workflows/.github/workflows/static-analysis.yaml@main
unit-tests-with-coverage:
uses: canonical/sdcore-github-workflows/.github/workflows/unit-test.yaml@main
integration-test:
uses: canonical/sdcore-github-workflows/.github/workflows/integration-test-with-multus.yaml@main
with:
charm-file-name: "sdcore-gnbsim-k8s_ubuntu-22.04-amd64.charm"
publish-charm:
name: Publish Charm
needs:
- lint-report
- static-analysis
- unit-tests-with-coverage
- integration-test
if: ${{ github.ref_name == 'main' }}
uses: canonical/sdcore-github-workflows/.github/workflows/publish-charm.yaml@main
with:
charm-file-name: "sdcore-gnbsim-k8s_ubuntu-22.04-amd64.charm"
track-name: 1.3
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}
fiveg-gnb-identity-lib-needs-publishing:
runs-on: ubuntu-22.04
outputs:
needs-publishing: ${{ steps.changes.outputs.fiveg_gnb_identity }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
fiveg_gnb_identity:
- 'lib/charms/sdcore_gnbsim_k8s/v0/fiveg_gnb_identity.py'
publish-fiveg-gnb-identity-lib:
name: Publish Lib
needs:
- publish-charm
- fiveg-gnb-identity-lib-needs-publishing
if: ${{ github.ref_name == 'main' }}
uses: canonical/sdcore-github-workflows/.github/workflows/publish-lib.yaml@main
with:
lib-name: "charms.sdcore_gnbsim_k8s.v0.fiveg_gnb_identity"
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}