diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5c094ac7c..78429f36c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -27,15 +27,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-extended,security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c20073a9..35136b690 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,10 +30,10 @@ jobs: image: memcached:1.5-alpine steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache npm dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: cache-${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }} @@ -41,7 +41,7 @@ jobs: cache-${{ runner.os }}-npm- - name: Cache Poetry dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pypoetry key: cache-${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}