Skip to content

Commit

Permalink
Adding GHAS file
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnmol committed Sep 20, 2023
1 parent d02664e commit eae6c9a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
Expand Down Expand Up @@ -60,6 +59,15 @@ jobs:
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

- name: Add NuGet feed
env:
nuget_feed_source: ${{ secrets.ARTIFACTORY_FEED_URL }}
run: dotnet nuget add source ${{ env.nuget_feed_source }} -n Artifactory

- name: Restore
env:
nuget_feed_source: ${{ secrets.ARTIFACTORY_FEED_URL }}
run: dotnet restore ./src/*.sln

# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
Expand Down

0 comments on commit eae6c9a

Please sign in to comment.