-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into snyk-fix-45d3403fd6f31504b9fecc3f6229857d
- Loading branch information
Showing
145 changed files
with
1,098 additions
and
1,359 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,23 +1,37 @@ | ||
# Directory pattern | ||
cicd: | ||
- .github/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: .github/**/* | ||
docs: | ||
- docs/**/* | ||
- "**/*.md" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- docs/**/* | ||
- "**/*.md" | ||
github-action: | ||
- .github/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: .github/**/* | ||
java: | ||
- application/**/* | ||
- "**/*.java" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- application/**/* | ||
- "**/*.java" | ||
javascript: | ||
- application/**/*.js | ||
- "**/*.js" | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- application/**/*.js | ||
- "**/*.js" | ||
kubernetes: | ||
- kubernetes/**/* | ||
- changed-files: | ||
- any-glob-to-any-file: kubernetes/**/* | ||
quarkus: | ||
- application/*-quarkus/* | ||
- changed-files: | ||
- any-glob-to-any-file: application/*-quarkus/* | ||
docker: | ||
- "**/Dockerfile" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/Dockerfile" | ||
kind: | ||
- "**/kind-*" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/kind-*" | ||
minikube: | ||
- "**/minikube-*" | ||
- changed-files: | ||
- any-glob-to-any-file: "**/minikube-*" |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
minikube-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.7 | ||
- name: check minikube version | ||
working-directory: ./.github/workflows | ||
run: | | ||
|
@@ -55,7 +55,7 @@ jobs: | |
sed -i -e "s/$SOURCE_DOC_VERSION/$TARGET_MINIKUBE_VERSION/g" ../../README.md | ||
- name: Add, commit, push, and create PR | ||
if: env.UNMATCH_VERSION == 'true' && env.BRANCH_IS_EXISTING == 'false' | ||
uses: peter-evans/[email protected].2 | ||
uses: peter-evans/[email protected].3 | ||
with: | ||
token: ${{ secrets.PAT_GITHUB_ACTION_WORKFLOW }} | ||
branch: actions/check-for-update-minikube | ||
|
@@ -67,7 +67,7 @@ jobs: | |
kubernetes-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.7 | ||
- name: check kubernetes version | ||
working-directory: ./.github/workflows | ||
run: | | ||
|
@@ -113,7 +113,7 @@ jobs: | |
sed -i -e "s/$SOURCE_DOC_VERSION/$TARGET_KUBERNETES_VERSION/g" ../../README.md | ||
- name: Add, commit, push, and create PR | ||
if: env.UNMATCH_VERSION == 'true' && env.BRANCH_IS_EXISTING == 'false' | ||
uses: peter-evans/[email protected].2 | ||
uses: peter-evans/[email protected].3 | ||
with: | ||
token: ${{ secrets.PAT_GITHUB_ACTION_WORKFLOW }} | ||
branch: actions/check-for-update-kubernetes | ||
|
@@ -125,7 +125,7 @@ jobs: | |
chaos-mesh-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.7 | ||
- name: check current chaos-mesh version | ||
working-directory: ./.github/workflows | ||
run: | | ||
|
@@ -163,7 +163,7 @@ jobs: | |
sed -i -e "s/$SOURCE_DOC_VERSION/$TARGET_VERSION/g" ../../README.md | ||
- name: Add, commit, push, and create PR | ||
if: env.UNMATCH_VERSION == 'true' && env.BRANCH_IS_EXISTING == 'false' | ||
uses: peter-evans/[email protected].2 | ||
uses: peter-evans/[email protected].3 | ||
with: | ||
token: ${{ secrets.PAT_GITHUB_ACTION_WORKFLOW }} | ||
branch: actions/check-for-update-chaos-mesh | ||
|
@@ -175,7 +175,7 @@ jobs: | |
quarkus-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.7 | ||
- name: check current quarkus version | ||
run: | | ||
echo "SOURCE_VERSION=$(grep "Quarkus Version" README.md | cut -d '-' -f 2)" >> $GITHUB_ENV | ||
|
@@ -208,7 +208,7 @@ jobs: | |
sed -i -e "s/$SOURCE_VERSION/$TARGET_VERSION/g" README.md | ||
- name: Add, commit, push, and create PR | ||
if: env.UNMATCH_VERSION == 'true' && env.BRANCH_IS_EXISTING == 'false' | ||
uses: peter-evans/[email protected].2 | ||
uses: peter-evans/[email protected].3 | ||
with: | ||
token: ${{ secrets.PAT_GITHUB_ACTION_WORKFLOW }} | ||
branch: actions/check-for-update-quarkus | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
validation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.7 | ||
- name: Sysdig CIS Dockerfile Benchmark | ||
uses: sysdiglabs/[email protected] | ||
with: | ||
|
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
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
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 |
---|---|---|
|
@@ -21,10 +21,10 @@ jobs: | |
security-events: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.7 | ||
|
||
- name: Run DevSkim scanner | ||
uses: microsoft/[email protected].10 | ||
uses: microsoft/[email protected].14 | ||
|
||
- name: Upload DevSkim scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
|
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
Oops, something went wrong.