diff --git a/.github/workflows/cache-cleanup.yml b/.github/workflows/cache-cleanup.yml index 7b2d98e8..31f43631 100644 --- a/.github/workflows/cache-cleanup.yml +++ b/.github/workflows/cache-cleanup.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Cleanup run: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12f5508a..0a75da5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: node_versions: ${{ steps.info.outputs.node_versions }} steps: - name: Checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Filter for core changes uses: dorny/paths-filter@v3.0.2 @@ -77,16 +77,16 @@ jobs: python-version: ${{ fromJSON(needs.info.outputs.python_versions) }} steps: - name: Checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.2 with: path: .venv lookup-only: true @@ -118,16 +118,16 @@ jobs: if: needs.info.outputs.run_pipeline == 'true' steps: - name: Checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 with: fetch-depth: "2" - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4.1.2 with: path: .venv fail-on-cache-miss: true @@ -165,15 +165,15 @@ jobs: if: needs.info.outputs.run_pipeline == 'true' steps: - name: Checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: ${{ matrix.python-version }} - name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4.1.2 with: path: .venv fail-on-cache-miss: true @@ -193,14 +193,14 @@ jobs: - name: Coverage comment id: coverage_comment - uses: py-cov-action/python-coverage-comment-action@v3.28 + uses: py-cov-action/python-coverage-comment-action@v3.29 with: GITHUB_TOKEN: ${{ github.token }} ANNOTATE_MISSING_LINES: true ANNOTATION_TYPE: warning - name: Store Pull Request comment to be posted - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' with: # If you use a different name, update COMMENT_ARTIFACT_NAME accordingly @@ -221,10 +221,10 @@ jobs: if: needs.info.outputs.run_pipeline_frontend == 'true' steps: - name: Checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Set up Node ${{ matrix.node-version }} - uses: actions/setup-node@v4.0.4 + uses: actions/setup-node@v4.1.0 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 59078876..bb46f1bc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,14 +20,14 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.2 - name: Initialize CodeQL - uses: github/codeql-action/init@v3.26.10 + uses: github/codeql-action/init@v3.27.0 with: languages: python - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3.26.10 + uses: github/codeql-action/analyze@v3.27.0 with: category: "/language:python" diff --git a/.github/workflows/pre-commit-update.yml b/.github/workflows/pre-commit-update.yml index ec457873..03e9f6fd 100644 --- a/.github/workflows/pre-commit-update.yml +++ b/.github/workflows/pre-commit-update.yml @@ -8,9 +8,9 @@ jobs: auto-update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.2 - name: Set up Python - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: 3.12 - name: Install pre-commit diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 32f2fbbe..720765dc 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.2 - name: Set up Python - uses: actions/setup-python@v5.2.0 + uses: actions/setup-python@v5.3.0 with: python-version: "3.12" - name: Install dependencies