Skip to content

Commit 450ab3c

Browse files
authored
Merge pull request #730 from cordada/dependabot/github_actions/production-dependencies-463cfd9578
chore: Bump the production-dependencies group with 6 updates
2 parents 699bcf1 + 3a97957 commit 450ab3c

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ jobs:
3434

3535
steps:
3636
- name: Check Out VCS Repository
37-
uses: actions/[email protected].0
37+
uses: actions/[email protected].2
3838

3939
- name: Set Up Python ${{ matrix.python_version }}
40-
uses: actions/setup-python@v5.2.0
40+
uses: actions/setup-python@v5.3.0
4141
with:
4242
python-version: "${{ matrix.python_version }}"
4343

4444
- name: Create Python Virtual Environment
4545
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4646

4747
- name: Restoring/Saving Cache
48-
uses: actions/cache@v4.0.2
48+
uses: actions/cache@v4.1.2
4949
with:
5050
path: "venv"
5151
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -75,15 +75,15 @@ jobs:
7575

7676
steps:
7777
- name: Check Out VCS Repository
78-
uses: actions/[email protected].0
78+
uses: actions/[email protected].2
7979

8080
- name: Set Up Python ${{ matrix.python_version }}
81-
uses: actions/setup-python@v5.2.0
81+
uses: actions/setup-python@v5.3.0
8282
with:
8383
python-version: "${{ matrix.python_version }}"
8484

8585
- name: Restoring/Saving Cache
86-
uses: actions/cache@v4.0.2
86+
uses: actions/cache@v4.1.2
8787
with:
8888
path: "venv"
8989
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -122,7 +122,7 @@ jobs:
122122
make test-coverage-report
123123
124124
- name: Upload coverage reports to Codecov
125-
uses: codecov/codecov-action@v4.5.0
125+
uses: codecov/codecov-action@v4.6.0
126126
with:
127127
token: ${{ secrets.CODECOV_TOKEN }}
128128
directory: ./test-reports/coverage/
@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Store Artifacts
139139
if: ${{ always() }}
140-
uses: actions/[email protected].0
140+
uses: actions/[email protected].3
141141
with:
142142
name: test_reports_${{ matrix.python_version }}
143143
path: test-reports/

.github/workflows/dependency-review.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121

2222
steps:
2323
- name: Check Out VCS Repository
24-
uses: actions/[email protected].0
24+
uses: actions/[email protected].2
2525

2626
- name: Dependency Review
27-
uses: actions/dependency-review-action@v4.3.4
27+
uses: actions/dependency-review-action@v4.4.0
2828
with:
2929
fail-on-severity: critical

.github/workflows/deploy.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ jobs:
3838

3939
steps:
4040
- name: Check Out VCS Repository
41-
uses: actions/[email protected].0
41+
uses: actions/[email protected].2
4242

4343
- name: Set Up Python
4444
id: set_up_python
45-
uses: actions/setup-python@v5.2.0
45+
uses: actions/setup-python@v5.3.0
4646
with:
4747
python-version: "3.10.9"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/cache@v4.0.2
50+
uses: actions/cache@v4.1.2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535

3636
steps:
3737
- name: Check Out VCS Repository
38-
uses: actions/[email protected].0
38+
uses: actions/[email protected].2
3939

4040
- name: Set Up Python
4141
id: set_up_python
42-
uses: actions/setup-python@v5.2.0
42+
uses: actions/setup-python@v5.3.0
4343
with:
4444
python-version: "3.10.9"
4545

4646
- name: Create Python Virtual Environment
4747
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/cache@v4.0.2
50+
uses: actions/cache@v4.1.2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -68,7 +68,7 @@ jobs:
6868
make dist
6969
7070
- name: Store Artifacts
71-
uses: actions/[email protected].0
71+
uses: actions/[email protected].3
7272
with:
7373
name: release
7474
path: ${{ env.ARTIFACTS_PATH }}/

0 commit comments

Comments
 (0)