Skip to content

Commit 94d7327

Browse files
Bump the github-actions group with 3 updates (#2330)
Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). 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 `actions/upload-artifact` from 4.0.0 to 4.3.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@c7d193f...26f96df) Updates `github/codeql-action` from 3.22.12 to 3.23.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@012739e...b7bf0a3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 09601ba commit 94d7327

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip setuptools
2727
echo "::set-output name=dir::$(pip cache dir)"
2828
- name: pip cache
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ${{ steps.pip-cache.outputs.dir }}
3232
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -65,7 +65,7 @@ jobs:
6565
python -m pip install --upgrade pip setuptools
6666
echo "::set-output name=dir::$(pip cache dir)"
6767
- name: pip cache
68-
uses: actions/cache@v3
68+
uses: actions/cache@v4
6969
with:
7070
path: ${{ steps.pip-cache.outputs.dir }}
7171
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -110,7 +110,7 @@ jobs:
110110
python -m pip install --upgrade pip setuptools
111111
echo "::set-output name=dir::$(pip cache dir)"
112112
- name: pip cache
113-
uses: actions/cache@v3
113+
uses: actions/cache@v4
114114
with:
115115
path: ${{ steps.pip-cache.outputs.dir }}
116116
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python -m pip install --upgrade pip setuptools
2828
echo "::set-output name=dir::$(pip cache dir)"
2929
- name: pip cache
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python -m pip install --upgrade pip setuptools
2626
echo "::set-output name=dir::$(pip cache dir)"
2727
- name: pip cache
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ${{ steps.pip-cache.outputs.dir }}
3131
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4646
# format to the repository Actions tab.
4747
- name: "Upload artifact"
48-
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
48+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
4949
with:
5050
name: SARIF file
5151
path: results.sarif
5252
retention-days: 5
5353

5454
# Upload the results to GitHub's code scanning dashboard.
5555
- name: "Upload to code-scanning"
56-
uses: github/codeql-action/upload-sarif@012739e5082ff0c22ca6d6ab32e07c36df03c4a4 # v3.22.12
56+
uses: github/codeql-action/upload-sarif@b7bf0a3ed3ecfa44160715d7c442788f65f0f923 # v3.23.2
5757
with:
5858
sarif_file: results.sarif

0 commit comments

Comments
 (0)