-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #627 from exasol/develop
Changelog: #573: Pushed test container to Dockerhub (#603) #616: Performed login to dockerhub for specific tests (#617) #621: Fixed CVE-2022-21499 (#622) #620: Fixed trivy false positive during secret scan (#624) #623: Removed CVE-2021-43816 from ignore list (#626)
- Loading branch information
Showing
12 changed files
with
58 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
160000 0a2c54f2ba6b8e134cfff0a761b9427f7cc547dc 0 script-languages | ||
160000 32f37b36694c5477d05897866cf99e56eff7d948 0 script-languages |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish Docker Test Container | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- 'ci-release-test/**' | ||
|
||
jobs: | ||
publish-test-container: | ||
runs-on: ubuntu-latest | ||
environment: publish | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Init submodules | ||
run: git submodule update --init --recursive | ||
- name: Build TestContainer | ||
run: ./exaslct build-test-container --force-rebuild | ||
- name: Push TestContainer image | ||
if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/main') }} | ||
run: | | ||
./exaslct push-test-container --source-docker-username "$SECRET_DOCKER_USER_NAME" --target-docker-username "$SECRET_DOCKER_USER_NAME" --force-push | ||
env: # Set the secret as an input | ||
SECRET_DOCKER_USER_NAME: ${{ secrets.DOCKER_USER_NAME }} | ||
TARGET_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
SOURCE_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
- name: Push ci-release-test TestContainer image | ||
if: ${{ (github.ref != 'refs/heads/master') && (github.ref != 'refs/heads/main') }} | ||
run: | | ||
./exaslct push-test-container --source-docker-username "$SECRET_DOCKER_USER_NAME" --target-docker-username "$SECRET_DOCKER_USER_NAME" --force-push --source-docker-tag-prefix ci_release_test --target-docker-tag-prefix ci_release_test | ||
env: # Set the secret as an input | ||
SECRET_DOCKER_USER_NAME: ${{ secrets.DOCKER_USER_NAME }} | ||
TARGET_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | ||
SOURCE_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} |
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
3 changes: 1 addition & 2 deletions
3
flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/security_scan/.trivyignore
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
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
4 changes: 4 additions & 0 deletions
4
flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/security_scan/trivy-secret.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
allow-rules: | ||
- id: r-open-ssl-samples | ||
description: skip R open ssl sample secrets | ||
path: usr/local/lib/R/site-library/openssl/doc/keys.html |
3 changes: 1 addition & 2 deletions
3
flavors/standard-EXASOL-7.0.0/flavor_base/security_scan/.trivyignore
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
3 changes: 1 addition & 2 deletions
3
flavors/standard-EXASOL-7.1.0-without-python2.7/flavor_base/security_scan/.trivyignore
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
3 changes: 1 addition & 2 deletions
3
flavors/standard-EXASOL-7.1.0/flavor_base/security_scan/.trivyignore
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
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
Submodule script-languages
updated
18 files