Skip to content

Commit

Permalink
Upgrade Action versions in codeql-analysis.yml workflow.
Browse files Browse the repository at this point in the history
The `v2` Action versions are deprecated and will soon cease to work correctly. Upgraded actions/checkout to v4 and the codeql Actions to v3.
  • Loading branch information
mario-campos authored Apr 20, 2024
1 parent 90f415c commit bdec9d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit bdec9d1

Please sign in to comment.