Skip to content

2023.1: zed merge #1155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jul 11, 2024
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
9daad4d
Merge pull request #1129 from stackhpc/zed-yoga-merge
markgoddard Jul 3, 2024
c4496fd
CI: Increase aio volume size to 50GB in upgrade jobs
markgoddard Jun 26, 2024
4c47daf
Merge pull request #1131 from stackhpc/zed-backport-upgrade-disk
markgoddard Jul 3, 2024
1e7527e
yoga: Build Cinder and Glance from StackHPC forks
markgoddard Jul 8, 2024
b9af1ad
Add Rocky 9 SIG Security Common repo
priteau Jul 5, 2024
905f487
Restrict security-common to OpenSSH packages
priteau Jul 5, 2024
f690c1e
Merge pull request #1143 from stackhpc/yoga-cve-2024-ssh
markgoddard Jul 9, 2024
1eac468
Merge branch 'stackhpc/yoga' into yoga-cve-2024-32498
markgoddard Jul 9, 2024
2ceb95d
Update security-common for OpenSSH CVE-2024-6409
priteau Jul 9, 2024
5a97741
Merge pull request #1146 from stackhpc/yoga-cve-2024-6409
markgoddard Jul 10, 2024
1f7d8d7
Merge pull request #1139 from stackhpc/yoga-cve-2024-32498
markgoddard Jul 10, 2024
43d7323
CI: Fix failure condition for container image builds when all images …
markgoddard Jul 11, 2024
d21a3ae
Merge pull request #1151 from stackhpc/yoga-build-condition
markgoddard Jul 11, 2024
06f8ba5
Fix failure condition for container image builds when all images are …
markgoddard Jul 11, 2024
a30ef85
Merge pull request #1153 from stackhpc/yoga-build-condition
markgoddard Jul 11, 2024
9ddf39a
Merge stackhpc/yoga into stackhpc/zed
markgoddard Jul 11, 2024
8e1ecc0
Revert "yoga: Build Cinder and Glance from StackHPC forks"
markgoddard Jul 11, 2024
c184be5
Merge stackhpc/zed into stackhpc/2023.1
markgoddard Jul 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/stackhpc-container-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
run: mv image-scan-output image-build-logs/image-scan-output

- name: Fail if no images have passed scanning
run: if [ $(wc -l < image-build-logs/image-scan-output/clean-images.txt) -le 0 ]; then exit 1; fi
run: if [ $(wc -l < image-build-logs/image-scan-output/critical-images.txt) -gt 0 ]; then exit 1; fi
if: ${{ !inputs.push-dirty }}

- name: Copy clean images to push-attempt-images list
Expand Down