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/call-lint-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
run: |
if ${{ inputs.ref != '' }} ; then
echo "trigger by workflow_call"
echo ::set-output name=ref::${{ inputs.ref }}

Check failure on line 35 in .github/workflows/call-lint-chart.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this workflow to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=weizhoublue_github-action-test&issues=AZr92D3iXm1SJ0fK-QDm&open=AZr92D3iXm1SJ0fK-QDm&pullRequest=662
elif ${{ github.event_name == 'workflow_dispatch' }} ; then
echo "trigger by workflow_dispatch"
echo ::set-output name=ref::${{ github.event.inputs.ref }}
Expand Down Expand Up @@ -64,7 +64,7 @@

# https://github.com/actions/setup-python
- name: Set up Python
uses: actions/setup-python@v3.1.0
uses: actions/setup-python@v6.1.0
with:
python-version: 3.8
architecture: x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-spell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
run: |
if ${{ inputs.ref != '' }} ; then
echo "trigger by workflow_call"
echo ::set-output name=ref::${{ inputs.ref }}

Check failure on line 35 in .github/workflows/lint-spell.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Change this workflow to not use user-controlled data directly in a run block.

See more on https://sonarcloud.io/project/issues?id=weizhoublue_github-action-test&issues=AZr92D1pXm1SJ0fK-QDk&open=AZr92D1pXm1SJ0fK-QDk&pullRequest=662
elif ${{ github.event_name == 'workflow_dispatch' }} ; then
echo "trigger by workflow_dispatch"
echo ::set-output name=ref::${{ github.event.inputs.ref }}
Expand All @@ -53,7 +53,7 @@

# https://github.com/actions/setup-python
- name: Set up Python
uses: actions/setup-python@v3.1.0
uses: actions/setup-python@v6.1.0
with:
python-version: 3.8
architecture: x64
Expand Down
Loading