Skip to content

Commit

Permalink
chore: Install .NET 9
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Nov 27, 2024
1 parent 6e440c0 commit 560ee0e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4


- name: Free Disk Space (Ubuntu)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be #v1.3.1
Expand All @@ -73,12 +72,24 @@ jobs:
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: false
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- name: Pin .NET Version
run: |
cp build/ci/net9/global.json global.json
- name: Setup .NET SDK
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3
with:
global-json-file: global.json
env:
DOTNET_INSTALL_DIR: ${{ runner.temp }}\dotnet
DOTNET_ROOT: ${{ runner.temp }}\dotnet

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down

0 comments on commit 560ee0e

Please sign in to comment.