Skip to content

Commit 6dc8872

Browse files
ci(deps): bump the github-actions group with 7 updates
Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [github/codeql-action](https://github.com/github/codeql-action) | `2` | `3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `codecov/codecov-action` from 3 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v5) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) Updates `actions/download-artifact` from 3 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 96f933f commit 6dc8872

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.github/workflows/ci.yml

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

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
fetch-depth: 0 # Shallow clones should be disabled for better relevancy of analysis
4141

4242
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v4
43+
uses: actions/setup-python@v6
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646

4747
- name: Cache pip packages
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.cache/pip
5151
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', 'setup.py') }}
@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Upload coverage to Codecov
9393
if: matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_VERSION
94-
uses: codecov/codecov-action@v3
94+
uses: codecov/codecov-action@v5
9595
with:
9696
file: ./coverage.xml
9797
flags: unittests
@@ -109,10 +109,10 @@ jobs:
109109

110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v5
113113

114114
- name: Set up Python
115-
uses: actions/setup-python@v4
115+
uses: actions/setup-python@v6
116116
with:
117117
python-version: ${{ env.PYTHON_VERSION }}
118118

@@ -137,7 +137,7 @@ jobs:
137137
semgrep --config=auto shared/ demos/ --json --output=semgrep-report.json || true
138138
139139
- name: Upload security reports
140-
uses: actions/upload-artifact@v3
140+
uses: actions/upload-artifact@v4
141141
if: always()
142142
with:
143143
name: security-reports
@@ -153,10 +153,10 @@ jobs:
153153

154154
steps:
155155
- name: Checkout repository
156-
uses: actions/checkout@v4
156+
uses: actions/checkout@v5
157157

158158
- name: Set up Python
159-
uses: actions/setup-python@v4
159+
uses: actions/setup-python@v6
160160
with:
161161
python-version: ${{ env.PYTHON_VERSION }}
162162

@@ -241,7 +241,7 @@ jobs:
241241

242242
steps:
243243
- name: Checkout repository
244-
uses: actions/checkout@v4
244+
uses: actions/checkout@v5
245245

246246
- name: Set up Docker Buildx
247247
uses: docker/setup-buildx-action@v2
@@ -269,10 +269,10 @@ jobs:
269269

270270
steps:
271271
- name: Checkout repository
272-
uses: actions/checkout@v4
272+
uses: actions/checkout@v5
273273

274274
- name: Set up Python
275-
uses: actions/setup-python@v4
275+
uses: actions/setup-python@v6
276276
with:
277277
python-version: ${{ env.PYTHON_VERSION }}
278278

.github/workflows/codeql.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Set up Python (for Python analysis)
3636
if: matrix.language == 'python'
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: '3.9'
4040

@@ -48,7 +48,7 @@ jobs:
4848
4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@v2
51+
uses: github/codeql-action/init@v3
5252
with:
5353
languages: ${{ matrix.language }}
5454
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -68,7 +68,7 @@ jobs:
6868
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6969
# If this step fails, then you should remove it and run the build manually (see below)
7070
- name: Autobuild
71-
uses: github/codeql-action/autobuild@v2
71+
uses: github/codeql-action/autobuild@v3
7272

7373
# ℹ️ Command-line programs to run using the OS shell.
7474
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -81,7 +81,7 @@ jobs:
8181
# ./location_of_script_within_repo/buildscript.sh
8282

8383
- name: Perform CodeQL Analysis
84-
uses: github/codeql-action/analyze@v2
84+
uses: github/codeql-action/analyze@v3
8585
with:
8686
category: "/language:${{matrix.language}}"
8787
# Upload results to Security tab
@@ -143,10 +143,10 @@ jobs:
143143

144144
steps:
145145
- name: Checkout repository
146-
uses: actions/checkout@v4
146+
uses: actions/checkout@v5
147147

148148
- name: Set up Python
149-
uses: actions/setup-python@v4
149+
uses: actions/setup-python@v6
150150
with:
151151
python-version: '3.9'
152152

@@ -168,7 +168,7 @@ jobs:
168168
pip-audit --desc
169169
170170
- name: Upload dependency security results
171-
uses: actions/upload-artifact@v3
171+
uses: actions/upload-artifact@v4
172172
if: always()
173173
with:
174174
name: dependency-security-results
@@ -188,14 +188,14 @@ jobs:
188188

189189
steps:
190190
- name: Download analysis results
191-
uses: actions/download-artifact@v3
191+
uses: actions/download-artifact@v5
192192
with:
193193
name: dependency-security-results
194194
path: ./security-results
195195
continue-on-error: true
196196

197197
- name: Upload additional SARIF results
198-
uses: github/codeql-action/upload-sarif@v2
198+
uses: github/codeql-action/upload-sarif@v3
199199
if: always()
200200
with:
201201
sarif_file: ./security-results/

0 commit comments

Comments
 (0)