Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-workflows group with 7 updates #885

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cache-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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 }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading