chore(deps): update dependency microsoft.identitymodel.protocols.openidconnect to v7 #426
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Authentication Scan | |
on: | |
schedule: | |
- cron: '0 8 * * 1,4' | |
push: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- 'Dockerfile' | |
pull_request: | |
branches: [ main ] | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'src/**' | |
- 'Dockerfile' | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --tag altinn-authentication:${{github.sha}} | |
- uses: Azure/[email protected] | |
with: | |
image-name: altinn-authentication:${{ github.sha }} | |
env: | |
DOCKLE_HOST: "unix:///var/run/docker.sock" |