Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

chore(deps): bump charset-normalizer from 3.3.2 to 3.4.0 (#232) #179

chore(deps): bump charset-normalizer from 3.3.2 to 3.4.0 (#232)

chore(deps): bump charset-normalizer from 3.3.2 to 3.4.0 (#232) #179

Workflow file for this run

name: CI
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
bvt:
name: Build Verification Test
uses: ./.github/workflows/bvt.yaml
with:
service_name: 'api'
project_folder: 'Api'
secrets: inherit
swagger_docs:
runs-on: ubuntu-latest
name: Generate Swagger Docs
needs: bvt
steps:
- name: Checkout Repository
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Build and Publish Swagger Docs
run: mkdir -p ${{ github.workspace }}/swagger-artifacts && bash ${{ github.workspace }}/scripts/generate-swagger.sh ${{ github.workspace }}/swagger-artifacts
env:
ASPNETCORE_ENVIRONMENT: 'Local'
- name: Publish Swagger Doc as Pipeline Artifact
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: SwaggerDoc
path: ${{ github.workspace }}/swagger-artifacts/dex-swagger.json
static_code_analysis:
name: Static Code Analysis
uses: ./.github/workflows/static-code-analysis.yaml