Skip to content

Commit e00ec00

Browse files
authored
Merge pull request #965 from cordada/dependabot/github_actions/github-actions-production-5bbdc87e35
chore(deps): Bump the github-actions-production group with 5 updates
2 parents b74f744 + 8c92558 commit e00ec00

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Check Out VCS Repository
39-
uses: actions/checkout@v6.0.0
39+
uses: actions/checkout@v6.0.1
4040

4141
- name: Set Up Python ${{ matrix.python_version }}
4242
id: set_up_python
@@ -52,7 +52,7 @@ jobs:
5252
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
5353

5454
- name: Restoring/Saving Cache
55-
uses: actions/cache@v4.3.0
55+
uses: actions/cache@v5.0.1
5656
with:
5757
path: |
5858
.tox
@@ -97,7 +97,7 @@ jobs:
9797

9898
steps:
9999
- name: Check Out VCS Repository
100-
uses: actions/checkout@v6.0.0
100+
uses: actions/checkout@v6.0.1
101101

102102
- name: Set Up Python ${{ matrix.python_version }}
103103
id: set_up_python
@@ -107,7 +107,7 @@ jobs:
107107
check-latest: true
108108

109109
- name: Restoring/Saving Cache
110-
uses: actions/cache@v4.3.0
110+
uses: actions/cache@v5.0.1
111111
with:
112112
path: |
113113
.tox
@@ -148,7 +148,7 @@ jobs:
148148
make test-coverage-report
149149
150150
- name: Upload coverage reports to Codecov
151-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
151+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
152152
with:
153153
token: ${{ secrets.CODECOV_TOKEN }}
154154
directory: ./test-reports/coverage/
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: Store Artifacts
165165
if: ${{ always() }}
166-
uses: actions/upload-artifact@v5.0.0
166+
uses: actions/upload-artifact@v6.0.0
167167
with:
168168
name: test_reports_${{ matrix.python_version }}
169169
path: test-reports/

.github/workflows/dependency-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Check Out VCS Repository
25-
uses: actions/checkout@v6.0.0
25+
uses: actions/checkout@v6.0.1
2626

2727
- name: Dependency Review
2828
uses: actions/dependency-review-action@v4.8.2

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Check Out VCS Repository
41-
uses: actions/checkout@v6.0.0
41+
uses: actions/checkout@v6.0.1
4242

4343
- name: Set Up Python
4444
id: set_up_python
@@ -47,13 +47,13 @@ jobs:
4747
python-version: "3.13"
4848

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

5555
- name: Restore Artifacts (Release)
56-
uses: actions/download-artifact@v6.0.0
56+
uses: actions/download-artifact@v7.0.0
5757
with:
5858
name: release
5959
path: ${{ inputs.artifacts_path }}/

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Check Out VCS Repository
38-
uses: actions/checkout@v6.0.0
38+
uses: actions/checkout@v6.0.1
3939

4040
- name: Set Up Python
4141
id: set_up_python
@@ -47,7 +47,7 @@ jobs:
4747
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/cache@v4.3.0
50+
uses: actions/cache@v5.0.1
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements.txt', 'requirements-dev.txt', 'Makefile', 'make/**.mk') }}
@@ -68,7 +68,7 @@ jobs:
6868
make dist
6969
7070
- name: Store Artifacts
71-
uses: actions/upload-artifact@v5.0.0
71+
uses: actions/upload-artifact@v6.0.0
7272
with:
7373
name: release
7474
path: ${{ env.ARTIFACTS_PATH }}/

.github/workflows/task-release-and-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Check Out VCS Repository
34-
uses: actions/checkout@v6.0.0
34+
uses: actions/checkout@v6.0.1
3535
with:
3636
ref: ${{ env.CREATE_RELEASE_VCS_REVISION_ID }}
3737

0 commit comments

Comments
 (0)