Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
with:
persist-credentials: false
- uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
- uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
with:
cache-binary: false
- name: Log in to the Container registry
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
echo -n "$(cat ./trivy_results.sarif)" | reviewdog -reporter=github-check -f=sarif -level=warning -diff="git diff FETCH_HEAD"
- name: Upload results
if: ${{ inputs.scan-image && inputs.upload-sarif }}
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: ${{ inputs.working-directory }}/trivy_results.sarif
category: container-security
2 changes: 1 addition & 1 deletion .github/workflows/go-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
echo -n "$(cat ./gosec-results.sarif)" | reviewdog -reporter=github-check -f=sarif -level=error -diff="git diff FETCH_HEAD"
- name: Upload results
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: '${{ inputs.working-directory }}/gosec-results.sarif'
category: sast
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/infra-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
enable_jobs_summary: true
comments_with_queries: true
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: ${{ inputs.working-directory }}/kics_results.sarif
category: devops
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
filter_mode: nofilter
tool_name: actionlint
- name: Install uv
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
with:
enable-cache: true
- name: Run zizmor
Expand All @@ -117,7 +117,7 @@ jobs:
run: |
echo -n "$(cat ./zizmor_results.sarif)" | reviewdog -reporter=github-check -f=sarif -level=warning -diff="git diff FETCH_HEAD"
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: zizmor_results.sarif
category: github-actions
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pulumi-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
python-version: ${{ inputs.python-version }}

# ----- Poetry -----
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
with:
path: ~/.local/bin/
Expand All @@ -88,12 +88,12 @@ jobs:
installer-parallel: true

# ----- UV -----
- uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
if: ${{ hashFiles(format('{0}/uv.lock', inputs.working-directory)) != '' }}
with:
enable-cache: true
- id: cache-deps
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: |
${{ inputs.working-directory }}/.venv
Expand All @@ -110,7 +110,7 @@ jobs:
# kics-scan ignore-line
requested-token-type: urn:pulumi:token-type:access_token:personal
scope: user:notdodo
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.PULUMI_HOME }}/plugins
key: python-${{ inputs.python-version }}-venv-${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory), format('{0}/uv.lock', inputs.working-directory)) }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pulumi-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
python-version: ${{ inputs.python-version }}

# ----- Poetry -----
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
with:
path: ~/.local/bin/
Expand All @@ -87,12 +87,12 @@ jobs:
installer-parallel: true

# ----- UV -----
- uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
if: ${{ hashFiles(format('{0}/uv.lock', inputs.working-directory)) != '' }}
with:
enable-cache: true
- id: cache-deps
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: |
${{ inputs.working-directory }}/.venv
Expand All @@ -109,7 +109,7 @@ jobs:
# kics-scan ignore-line
requested-token-type: urn:pulumi:token-type:access_token:personal
scope: user:notdodo
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ${{ env.PULUMI_HOME }}/plugins
key: python-${{ inputs.python-version }}-venv-${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory), format('{0}/uv.lock', inputs.working-directory)) }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
python-version: ${{ inputs.python-version }}

# ----- Poetry -----
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
if: ${{ hashFiles(format('{0}/poetry.lock', inputs.working-directory)) != '' }}
with:
path: ~/.local/bin/
Expand All @@ -66,12 +66,12 @@ jobs:
installer-parallel: true

# ----- UV -----
- uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
if: ${{ hashFiles(format('{0}/uv.lock', inputs.working-directory)) != '' }}
with:
enable-cache: true
- id: cache-deps
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: |
${{ inputs.working-directory }}/.venv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
run: |
echo -n "$(cat ./clippy-results.sarif)" | reviewdog -reporter=github-check -f=sarif -level=warning -diff="git diff FETCH_HEAD"
- name: Upload results
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: ${{ inputs.working-directory }}/clippy-results.sarif
category: sast
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
echo -n "$(cat ./sast-output.sarif)" | reviewdog -reporter=github-check -f=sarif -level=error -diff="git diff FETCH_HEAD"
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: ./sast-output.sarif
category: sast
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/terraform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
- run: |
echo "plugin_cache_dir = '$HOME/.terraform.d/plugin-cache'" > ~/.terraformrc
mkdir -p ~/.terraform.d/plugin-cache
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ~/.terraform.d/plugin-cache
key: terraform-providers-${{ hashFiles('**/.terraform.lock.hcl') }}
Expand Down Expand Up @@ -117,7 +117,7 @@
run: |
echo -n "$(cat ./trivy_results.sarif)" | reviewdog -reporter=github-check -f=sarif -level=error -diff="git diff FETCH_HEAD"
- name: Upload results
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: ${{ inputs.working-directory }}/trivy_results.sarif
category: devops
Expand Down Expand Up @@ -153,7 +153,7 @@
- run: |
echo "plugin_cache_dir = '$HOME/.terraform.d/plugin-cache'" > ~/.terraformrc
mkdir -p ~/.terraform.d/plugin-cache
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
with:
path: ~/.terraform.d/plugin-cache
key: terraform-providers-${{ hashFiles('**/.terraform.lock.hcl') }}
Expand All @@ -173,7 +173,7 @@
run: terraform init -input=false
- name: Terraform Plan
id: plan
run: |

Check failure on line 176 in .github/workflows/terraform-ci.yml

View workflow job for this annotation

GitHub Actions / infra-scan / GitHub Actions Security Analysis

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2129:style:2:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck] Raw Output: e:.github/workflows/terraform-ci.yml:176:9: shellcheck reported issue in this script: SC2129:style:2:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects [shellcheck]

Check warning on line 176 in .github/workflows/terraform-ci.yml

View workflow job for this annotation

GitHub Actions / infra-scan / GitHub Actions Security Analysis

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:15: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/terraform-ci.yml:176:9: shellcheck reported issue in this script: SC2086:info:4:15: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 176 in .github/workflows/terraform-ci.yml

View workflow job for this annotation

GitHub Actions / infra-scan / GitHub Actions Security Analysis

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:3:17: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/terraform-ci.yml:176:9: shellcheck reported issue in this script: SC2086:info:3:17: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 176 in .github/workflows/terraform-ci.yml

View workflow job for this annotation

GitHub Actions / infra-scan / GitHub Actions Security Analysis

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:21: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/terraform-ci.yml:176:9: shellcheck reported issue in this script: SC2086:info:2:21: Double quote to prevent globbing and word splitting [shellcheck]
terraform plan -no-color -input=false | tee plan.txt
echo "plan<<EOF" >> $GITHUB_OUTPUT
cat plan.txt >> $GITHUB_OUTPUT
Expand Down