diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 6c1b00e..a13de19 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -36,7 +36,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v6 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 1cf4e90..099a4df 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -8,7 +8,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index 3d1ca9d..b358ce4 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -15,7 +15,7 @@ jobs: python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] name: ${{ matrix.python-version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup python uses: actions/setup-python@v5 with: