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

chore: Bump the production-dependencies group across 1 directory with 6 updates #197

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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/[email protected].0
uses: actions/[email protected].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: Create Python Virtual Environment
run: make python-virtualenv PYTHON_VIRTUALENV_DIR=".pyenv"

- name: Restoring/Saving Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ".pyenv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down Expand Up @@ -78,15 +78,15 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/[email protected].0
uses: actions/[email protected].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: Restoring/Saving Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ".pyenv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
make test-coverage-report

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.6.0
uses: codecov/codecov-action@v5.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./test_reports/coverage/
Expand All @@ -140,7 +140,7 @@ jobs:

- name: Store Artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.5.0
with:
name: test_reports_${{ matrix.python_version }}
path: test_reports/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/[email protected].0
uses: actions/[email protected].2

- name: Dependency Review
uses: actions/dependency-review-action@v4.3.4
uses: actions/dependency-review-action@v4.5.0
with:
fail-on-severity: critical
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/[email protected].0
uses: actions/[email protected].2

- name: Set Up Python
id: set_up_python
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: "3.10.13"

- name: Restoring/Saving Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ".pyenv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/[email protected].0
uses: actions/[email protected].2

- name: Set Up Python
id: set_up_python
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: "3.10.13"

- name: Create Python Virtual Environment
run: make python-virtualenv PYTHON_VIRTUALENV_DIR=".pyenv"

- name: Restoring/Saving Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.2.0
with:
path: ".pyenv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand All @@ -69,7 +69,7 @@ jobs:
make dist

- name: Store Artifacts
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.5.0
with:
name: release
path: ${{ env.ARTIFACTS_PATH }}/
Expand Down
Loading