From 1a8e6df609bcd8fdb0ba4c554c59418052c0dffd Mon Sep 17 00:00:00 2001 From: Fran Date: Sun, 3 Nov 2024 19:38:08 -0500 Subject: [PATCH] fix: Update action urls --- .github/workflows/codeql.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 91513c7..07a05a5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -29,10 +29,10 @@ jobs: steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v4 - name: Setup Python 3.11 🐍 - uses: actions/setup-python@v4 + uses: https://github.com/actions/setup-python@v4 with: python-version: 3.11 cache: 'pip' @@ -44,13 +44,13 @@ jobs: echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV - name: Initialize CodeQL 🧑‍💻 - uses: github/codeql-action/init@v2 + uses: https://github.com/github/codeql-action/init@v2 with: languages: ${{ matrix.language }} queries: security-and-quality setup-python-dependencies: false - name: Perform CodeQL Analysis 📈 - uses: github/codeql-action/analyze@v2 + uses: https://github.com/github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}"