Skip to content
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

Bump @rollup/plugin-commonjs from 26.0.1 to 28.0.1 #392

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 9 additions & 8 deletions .github/scripts/snyk-report.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -e

KEYCLOAK_REPO="keycloak/keycloak"
KEYCLOAK_REPO="keycloak-poc/keycloak"
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)

# Extract the version number if BRANCH_NAME contains a slash
Expand Down Expand Up @@ -59,7 +59,7 @@ create_github_issue() {
return 0
else
printf "Issue creation failed with status: %s\n" "$http_code"
exit 1
return 1
fi
}

Expand All @@ -78,7 +78,7 @@ update_github_issue() {
return 0
else
printf "Issue update failed with status: %s\n" "$http_code"
exit 1
return 1
fi
}

Expand All @@ -96,11 +96,12 @@ parse_and_process_vulnerabilities() {
local description=$(echo "$vulnerability" | jq -r '.description // "N/A"')

printf -v body "%s\n%s\n%s\n%s" "$title" "$module" "$from_path" "$description"
issue_id=$(check_github_issue_exists "$cve_title")
if [[ $issue_id -eq 1 ]]; then
create_github_issue "$title" "$body"
else
update_github_issue "$issue_id"
if ! update_github_issue "$issue_id"; then
printf "Fallback: Attempting to create a new issue after update failure.\n"
if ! create_github_issue "$title" "$body"; then
printf "Error: Failed to create a new issue after update failure.\n"
exit 1
fi
fi
done
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions .github/workflows/schedule-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:

setup:
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
if: github.event_name != 'schedule' || github.repository == 'keycloak-poc/keycloak'
runs-on: ubuntu-latest
outputs:
latest-release-branch: ${{ steps.latest-release.outputs.branch }}
Expand All @@ -29,13 +29,13 @@ jobs:
strategy:
matrix:
workflow:
- ci.yml
- documentation.yml
- js-ci.yml
- operator-ci.yml
- codeql-analysis.yml
#- ci.yml
#- documentation.yml
#- js-ci.yml
#- operator-ci.yml
#- codeql-analysis.yml
- snyk-analysis.yml
- trivy-analysis.yml
#- trivy-analysis.yml

steps:
- name: Run workflow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
analysis:
name: Analysis of Quarkus and Operator
runs-on: ubuntu-latest
if: github.repository == 'keycloak/keycloak'
if: github.repository == 'keycloak-poc/keycloak'
steps:
- uses: actions/checkout@v4

Expand Down
File renamed without changes.
Loading