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 @@ -146,7 +146,7 @@
- name: Get changed paths (monorepo)
if: (steps.check-tag.outputs.is_stable == 'true' || inputs.stable_releases_only == false) && inputs.filter_paths != ''
id: changed-paths
uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop

Check warning on line 149 in .github/workflows/gptchangelog.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

Internal action not pinned to a final release version: uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop
with:
filter-paths: ${{ inputs.filter_paths }}
shared-paths: ${{ inputs.shared_paths }}
Expand Down Expand Up @@ -252,7 +252,7 @@

steps:
- name: Create GitHub App Token
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
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
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Expand All @@ -109,7 +109,7 @@
id: payload
env:
PAYLOAD_INPUT: ${{ inputs.payload }}
run: |

Check failure on line 112 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:27:1: Consider using { cmd1; cmd2; } >> file instead of individual redirects

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:27:26: Double quote to prevent globbing and word splitting
echo "Received payload:"
# Write payload to file using env var to avoid quote escaping issues
echo "${PAYLOAD_INPUT}" > /tmp/payload.json
Expand Down Expand Up @@ -198,7 +198,7 @@

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

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

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:146:50: Double quote to prevent globbing and word splitting
CHART="${{ steps.payload.outputs.chart }}"
CHARTS_PATH="${{ inputs.charts_path }}"
VALUES_FILE="${CHARTS_PATH}/${CHART}/values.yaml"
Expand Down Expand Up @@ -373,7 +373,7 @@

- name: Commit changes
id: commit
run: |

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

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:10:31: Double quote to prevent globbing and word splitting
CHART="${{ steps.payload.outputs.chart }}"
UPDATED_COMPONENTS="${{ steps.process.outputs.updated_components }}"
HAS_NEW_ENV_VARS="${{ steps.payload.outputs.has_new_env_vars }}"
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
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
Expand Down Expand Up @@ -162,7 +162,7 @@

- name: Discord notification
if: ${{ env.DISCORD_WEBHOOK_URL != '' }}
uses: LerianStudio/github-actions-shared-workflows/src/notify/discord-release@develop

Check warning on line 165 in .github/workflows/release-notification.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

Internal action not pinned to a final release version: uses: LerianStudio/github-actions-shared-workflows/src/notify/discord-release@develop
with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
release-tag: ${{ steps.release.outputs.tag }}
Expand All @@ -174,7 +174,7 @@

- name: Slack notification
if: ${{ env.SLACK_WEBHOOK_URL != '' && inputs.slack_channel != '' }}
uses: LerianStudio/github-actions-shared-workflows/src/notify/slack-release@develop

Check warning on line 177 in .github/workflows/release-notification.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

Internal action not pinned to a final release version: uses: LerianStudio/github-actions-shared-workflows/src/notify/slack-release@develop
with:
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
channel: ${{ inputs.slack_channel }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
- name: Get changed paths (monorepo)
if: inputs.filter_paths != ''
id: changed-paths
uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop

Check warning on line 63 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

Internal action not pinned to a final release version: uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop
with:
filter-paths: ${{ inputs.filter_paths }}
shared-paths: ${{ inputs.shared_paths }}
Expand Down Expand Up @@ -103,7 +103,7 @@
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
2 changes: 1 addition & 1 deletion .github/workflows/typescript-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
- name: Get changed paths (monorepo)
if: inputs.filter_paths != ''
id: changed-paths
uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop

Check warning on line 72 in .github/workflows/typescript-release.yml

View workflow job for this annotation

GitHub Actions / Pinned Actions Check

Internal action not pinned to a final release version: uses: LerianStudio/github-actions-shared-workflows/src/config/changed-paths@develop
with:
filter-paths: ${{ inputs.filter_paths }}
shared-paths: ${{ inputs.shared_paths }}
Expand Down Expand Up @@ -114,7 +114,7 @@
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