diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-01-15 13:28:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 13:28:49 +0000 |
commit | 23b6637db6039d6d85ee1a4424be0661df021073 (patch) | |
tree | c6d2bcdf9199c0b7ff0a09f8aa209afc3acb2541 | |
parent | 195e59bd0c60523caa415f429517e46ff7065600 (diff) | |
download | edk2-dependabot/github_actions/actions/upload-artifact-4.tar.gz edk2-dependabot/github_actions/actions/upload-artifact-4.tar.bz2 edk2-dependabot/github_actions/actions/upload-artifact-4.zip |
GitHub Action: Bump actions/upload-artifact from 3 to 4dependabot/github_actions/actions/upload-artifact-4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r-- | .github/workflows/codeql.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c91e9d4dbe..dccde19edc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -141,7 +141,7 @@ jobs: run: stuart_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2019
- name: Upload Setup Log As An Artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: (success() || failure()) && steps.get_ci_file_operations.outputs.setup_supported == 'true'
with:
name: ${{ matrix.Package }}-Logs
@@ -155,7 +155,7 @@ jobs: run: stuart_ci_setup -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2019
- name: Upload CI Setup Log As An Artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: (success() || failure()) && steps.get_ci_file_operations.outputs.ci_setup_supported == 'true'
with:
name: ${{ matrix.Package }}-Logs
@@ -168,7 +168,7 @@ jobs: run: stuart_update -c .pytool/CISettings.py -t DEBUG -a ${{ matrix.ArchList }} TOOL_CHAIN_TAG=VS2019
- name: Upload Update Log As An Artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: ${{ matrix.Package }}-Logs
@@ -284,7 +284,7 @@ jobs: delete_dirs(build_path)
- name: Upload Build Logs As An Artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: ${{ matrix.Package }}-Logs
@@ -329,7 +329,7 @@ jobs: print(f'upload_sarif_file=false', file=fh)
- name: Upload CodeQL Results (SARIF) As An Artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: steps.env_data.outputs.upload_sarif_file == 'true'
with:
name: ${{ matrix.Package }}-CodeQL-SARIF
|