-
Notifications
You must be signed in to change notification settings - Fork 78
feat: reproducible keystore generation, remove committed keystores #4826
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
base: v3.x.x
Are you sure you want to change the base?
Changes from 17 commits
93ffb5c
f909df2
aa46f7a
0d61106
fcc51ad
48887d8
b9460aa
78660be
2a155ca
21fd863
9f4e138
abbed05
01c69bf
21072f0
99121b3
1c1d24e
b6eef6e
fec492c
42319fd
d7d51da
89210c7
25619ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,19 @@ | |
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Install openssl if missing | ||
| run: | | ||
| if ! command -v openssl &>/dev/null; then | ||
| if [ "$(id -u)" = "0" ]; then apt-get update && apt-get install -y openssl | ||
| else sudo apt-get update && sudo apt-get install -y openssl; fi | ||
| fi | ||
| shell: bash | ||
| - name: Download keystores | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: keystores-${{ env.JOB_ID }} | ||
| path: keystore/ | ||
| continue-on-error: true | ||
| - name: Set up JDK ${{ inputs.jdkVersion }} | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
|
|
@@ -18,8 +31,8 @@ | |
| - name: Set up Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '24.18.0' | ||
| - run: npm install -g npm@10.9.8 | ||
| node-version: '24.18.0' # keep in sync with gradle/versions.gradle projectNode | ||
| - run: npm install -g npm@10.9.8 # keep in sync with gradle/versions.gradle projectNpm | ||
|
Check warning on line 35 in .github/actions/setup/action.yml
|
||
| shell: bash | ||
| - name: Grant execute permission for gradlew | ||
| run: chmod +x gradlew | ||
|
|
||
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.