Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@
runs-on: ${{ inputs.runner_type }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

Check failure on line 103 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6.0.2 (use full commit SHA with a # vX.Y.Z comment)
with:
fetch-depth: 0

- name: Process all components
id: process
run: |

Check failure on line 109 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:171:46: Double quote to prevent globbing and word splitting
BASE_PATH="${{ inputs.components_base_path }}"
ENV_FILE="${{ inputs.env_file }}"
DETECT_ENV="${{ inputs.detect_env_changes }}"
Expand Down Expand Up @@ -332,7 +332,7 @@
echo "Workflow dispatched successfully"

- name: Summary
run: |

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:8:27: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:7:12: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:6:46: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:5:61: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:4:12: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:3:32: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:13:138: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:11:50: Double quote to prevent globbing and word splitting

Check failure on line 335 in .github/workflows/dispatch-helm.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:10:50: Double quote to prevent globbing and word splitting
COMPONENTS=$(cat /tmp/components_payload.json)

echo "### Dispatch Summary" >> $GITHUB_STEP_SUMMARY
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

Check failure on line 82 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6.0.2 (use full commit SHA with a # vX.Y.Z comment)

- name: Set up Go
uses: actions/setup-go@v6

Check failure on line 85 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/setup-go@v6 (use full commit SHA with a # vX.Y.Z comment)
with:
go-version: ${{ matrix.go }}
cache: true
Expand All @@ -101,7 +101,7 @@

- name: Upload coverage artifact
if: inputs.enable_coverage_comment && matrix.os == 'ubuntu-latest' && matrix.go == inputs.go_version_lint
uses: actions/upload-artifact@v7

Check failure on line 104 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/upload-artifact@v7 (use full commit SHA with a # vX.Y.Z comment)
with:
name: coverage-report
path: coverage.txt
Expand All @@ -118,15 +118,15 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

Check failure on line 121 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6.0.2 (use full commit SHA with a # vX.Y.Z comment)

- name: Download coverage artifact
uses: actions/download-artifact@v8

Check failure on line 124 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/download-artifact@v8 (use full commit SHA with a # vX.Y.Z comment)
with:
name: coverage-report

- name: Go Coverage Comment
uses: fgrosse/go-coverage-report@v1.3.0

Check failure on line 129 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: fgrosse/go-coverage-report@v1.3.0 (use full commit SHA with a # vX.Y.Z comment)
with:
coverage-artifact-name: coverage-report
coverage-file-name: coverage.txt
Expand All @@ -137,16 +137,16 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

Check failure on line 140 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6.0.2 (use full commit SHA with a # vX.Y.Z comment)

- name: Set up Go
uses: actions/setup-go@v6

Check failure on line 143 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/setup-go@v6 (use full commit SHA with a # vX.Y.Z comment)
with:
go-version: ${{ inputs.go_version_lint }}
cache: true

- name: golangci-lint
uses: golangci/golangci-lint-action@v9

Check failure on line 149 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: golangci/golangci-lint-action@v9 (use full commit SHA with a # vX.Y.Z comment)
with:
version: ${{ inputs.golangci_lint_version }}
args: ${{ inputs.golangci_lint_args }}
Expand All @@ -159,7 +159,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -208,7 +208,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Set up Go
uses: actions/setup-go@v6
Expand All @@ -227,7 +227,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Set up Go
uses: actions/setup-go@v6
Expand All @@ -253,7 +253,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Check required files
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Set up Go
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ${{ inputs.runner_type }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s3-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
upload:
runs-on: ${{ inputs.runner_type }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2

- name: Determine environment
id: env
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/typescript-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
Loading