Bump Azure.Storage.Blobs and System.Text.Json in /src/Authorization #1719
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: Authorization Scan | |
on: | |
schedule: | |
- cron: '0 8 * * 1,4' | |
push: | |
branches: [ main ] | |
paths: | |
- 'src/Authorization/**' | |
- 'Dockerfile' | |
pull_request: | |
branches: [ main ] | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'src/Authorization/**' | |
- 'Dockerfile' | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --tag altinn-authorization:${{github.sha}} | |
- uses: Azure/[email protected] | |
with: | |
image-name: altinn-authorization:${{ github.sha }} | |
env: | |
DOCKLE_HOST: "unix:///var/run/docker.sock" |