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
Expand Up @@ -100,7 +100,7 @@ jobs:
steps:
- name: Generate GitHub App Token
id: app-token
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
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,14 +114,14 @@
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 }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout
uses: actions/checkout@v6

Check failure on line 124 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/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)

- name: Fetch latest release tag
id: release
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@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
Loading