diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index fe3cfa1..d21ab3c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,11 +39,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v6.0.2 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v3.35.2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -54,7 +54,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v3.35.2 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -68,4 +68,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v3.35.2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 16aad62..9c130d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,10 +14,10 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v6.2.0 with: python-version: ${{ matrix.python-version }} @@ -30,7 +30,7 @@ jobs: - name: Run development server if: ${{ !contains(github.ref, 'mod-wsgi-standalone') }} - uses: JarvusInnovations/background-action@v1 + uses: JarvusInnovations/background-action@v1.0.7 with: run: make server & wait-on: http://127.0.0.1:8000 @@ -38,7 +38,7 @@ jobs: - name: Run wsgi server if: ${{ contains(github.ref, 'mod-wsgi-standalone') }} - uses: JarvusInnovations/background-action@v1 + uses: JarvusInnovations/background-action@v1.0.7 with: run: make wsgi-server & wait-on: http://127.0.0.1:8000