fix(deps): update dependency net.bytebuddy:byte-buddy to v1.15.8 #693
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Security tests | |
on: | |
push: | |
branches-ignore: | |
- 'whitesource-remediate/**' | |
- 'backport/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
Get-CI-Image-Tag: | |
uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main | |
with: | |
product: opensearch | |
integ-test-with-security-linux: | |
strategy: | |
matrix: | |
java: [21] | |
env: | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
name: Run Security Integration Tests on Linux | |
runs-on: ubuntu-latest | |
needs: Get-CI-Image-Tag | |
container: | |
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution | |
# this image tag is subject to change as more dependencies and updates will arrive over time | |
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} | |
# need to switch to root so that github actions can install runner binary on container without permission issues. | |
options: --user root | |
steps: | |
- name: Checkout Skills | |
uses: actions/checkout@v3 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
# switching the user, as OpenSearch cluster can only be started as root/Administrator on linux-deb/linux-rpm/windows-zip. | |
run: | | |
chown -R 1000:1000 `pwd` | |
su `id -un 1000` -c "whoami && java -version && ./gradlew integTest -Dsecurity.enabled=true" |