-
Notifications
You must be signed in to change notification settings - Fork 12
Pipeline test #775
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
Pipeline test #775
Conversation
Not required with GraalVM JDK 21+ (gu tool has been removed)
Since native-image is not actually executed, the reporting is pointless
Secret names are wrong; also The "skipDeployment" feature is used so that the release job just pushes the previously build deploy bundle
This is necessary because otherwise, central-publishing-maven-plugin will complain about no artifact being bound to the documentation module
runs-on: ubuntu-latest | ||
steps: | ||
- name: Debug | ||
run: | | ||
echo "${{ secrets.CENTRAL_SONATYPE_TOKEN_USERNAME }}" > a | ||
echo "${{ secrets.CENTRAL_SONATYPE_TOKEN_PASSWORD }}" > b | ||
cat a | base64 | ||
cat b | base64 |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium test
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI about 18 hours ago
To fix the issue, we will add a permissions
block at the root of the workflow file. This block will specify the least privileges required for the workflow to function. Since the workflow does not appear to require write access to any resources, we will set contents: read
as the minimal permission. This ensures the workflow can read repository contents but cannot modify them.
-
Copy modified lines R14-R16
@@ -13,2 +13,5 @@ | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: |
Description
Please include a summary of the changes and the related issue. List any dependencies that are required for this change.
Fixes #(number of issue in GitHub)
Type of change
Please delete options that are not relevant.
Checklist:
Additional notes:
Add any other notes or comments here.