Skip to content

Commit

Permalink
Bump GH action deps (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoobdude authored Nov 19, 2024
1 parent b4e5651 commit d4c0f47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL (JS)
if: ${{ matrix.language == 'javascript' }}
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-ts-config.yml

- name: Initialize CodeQL
if: ${{ matrix.language != 'javascript' }}
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
Expand All @@ -65,7 +65,7 @@ jobs:
run: dotnet build

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit d4c0f47

Please sign in to comment.