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/gptchangelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
is_stable: ${{ steps.check-tag.outputs.is_stable }}
steps:
- name: Checkout for branch check
uses: actions/checkout@v6

Check failure on line 65 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

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

Expand Down Expand Up @@ -139,7 +139,7 @@

- name: Checkout repository
if: steps.check-tag.outputs.is_stable == 'true' || inputs.stable_releases_only == false
uses: actions/checkout@v6

Check failure on line 142 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

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

Expand Down Expand Up @@ -252,14 +252,14 @@

steps:
- name: Create GitHub App Token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3

Check failure on line 255 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/create-github-app-token@v3 (use full commit SHA with a # vX.Y.Z comment)
id: app-token
with:
app-id: ${{ secrets.LERIAN_STUDIO_MIDAZ_PUSH_BOT_APP_ID }}
private-key: ${{ secrets.LERIAN_STUDIO_MIDAZ_PUSH_BOT_PRIVATE_KEY }}

- name: Checkout repository
uses: actions/checkout@v6

Check failure on line 262 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
Expand All @@ -279,7 +279,7 @@
fi

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v7

Check failure on line 282 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: crazy-max/ghaction-import-gpg@v7 (use full commit SHA with a # vX.Y.Z comment)
id: import_gpg
with:
gpg_private_key: ${{ secrets.LERIAN_CI_CD_USER_GPG_KEY }}
Expand Down Expand Up @@ -733,7 +733,7 @@
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Send Slack notification for sync PR
uses: slackapi/slack-github-action@v1.24.0

Check failure on line 736 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: slackapi/slack-github-action@v1.24.0 (use full commit SHA with a # vX.Y.Z comment)
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-update-chart.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Update Helm Chart"

# Reusable workflow for updating Helm charts from dispatch payload
Expand Down Expand Up @@ -100,7 +100,7 @@
steps:
- name: Generate GitHub App Token
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3

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

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/create-github-app-token@v3 (use full commit SHA with a # vX.Y.Z comment)
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -153,7 +153,7 @@
# triggered by internal dispatch, not a PR event. The ref is a controlled
# branch name (develop/main), not an untrusted PR head.
- name: Checkout
uses: actions/checkout@v6

Check failure on line 156 in .github/workflows/helm-update-chart.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)
with:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ inputs.base_branch }}
Expand Down Expand Up @@ -186,7 +186,7 @@

- name: Setup Go
if: ${{ inputs.update_readme }}
uses: actions/setup-go@v6

Check failure on line 189 in .github/workflows/helm-update-chart.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: '1.21'
cache-dependency-path: ${{ inputs.scripts_path }}/go.mod
Expand Down Expand Up @@ -414,7 +414,7 @@
if: steps.commit.outputs.has_changes == 'true'
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
run: |

Check failure on line 417 in .github/workflows/helm-update-chart.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2034:warning:4:1: COMMIT_MSG appears unused. Verify use (or export if used externally)
CHART="${{ steps.payload.outputs.chart }}"
BRANCH_NAME="${{ steps.payload.outputs.branch_name }}"
BASE_BRANCH="${{ inputs.base_branch }}"
Expand Down Expand Up @@ -475,7 +475,7 @@
- name: Summary
env:
BASE_BRANCH: ${{ inputs.base_branch }}
run: |

Check failure on line 478 in .github/workflows/helm-update-chart.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2129:style:6:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects

Check failure on line 478 in .github/workflows/helm-update-chart.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2129:style:19:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects
COMPONENTS=$(cat /tmp/components.json)
CHART="${{ steps.payload.outputs.chart }}"
BRANCH_NAME="${{ steps.payload.outputs.branch_name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- name: Create GitHub App token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3

Check failure on line 117 in .github/workflows/release-notification.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

External action not pinned by SHA: uses: actions/create-github-app-token@v3 (use full commit SHA with a # vX.Y.Z comment)
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
gpg_fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}

steps:
- uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2
- uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
id: app-token
with:
app-id: ${{ secrets.LERIAN_STUDIO_MIDAZ_PUSH_BOT_APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typescript-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
gpg_fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}

steps:
- uses: actions/create-github-app-token@v2
- uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ secrets.LERIAN_STUDIO_MIDAZ_PUSH_BOT_APP_ID }}
Expand Down
Loading