Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github actions #450

Merged
merged 2 commits into from
Jan 22, 2025
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
k8s-version: [1.28.13, 1.29.8, 1.30.4, 1.31.0]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit # change to 'egress-policy: block' after couple of runs
disable-sudo: true
Expand All @@ -76,12 +76,12 @@ jobs:
fetch-depth: 0

- name: Set up chart-testing
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1
uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b # v2.7.0

- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed)
changed=$(ct list-changed --config .github/ct/ct.yaml )
if [[ -n "$changed" ]]; then
echo "changed=true" >> "${GITHUB_OUTPUT}"
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/megalinter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Upload MegaLinter artifacts
- name: Archive production artifacts
if: ${{ always() }}
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: MegaLinter reports
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: generate-chart-changelog.sh

- name: Run chart-releaser
uses: helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584 # v1.6.0
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
with:
config: .github/ct/ct.yaml
env:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
kubescape scan framework mitre --format=html --output=kubescape-reports/mitre.html charts/

- name: "Upload kubescape reports"
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: kubescape-reports
path: kubescape-reports/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Renovate
on:

Check warning on line 2 in .github/workflows/renovate.yaml

View workflow job for this annotation

GitHub Actions / lint

2:1 [truthy] truthy value should be one of [false, true]
schedule:
- cron: "0 11 * * *"
push:
Expand All @@ -16,7 +16,7 @@
runs-on: ubuntu-24.04
if: ${{ github.repository == 'miracum/charts' }}
steps:
- uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1

Check warning on line 19 in .github/workflows/renovate.yaml

View workflow job for this annotation

GitHub Actions / lint

19:88 [comments] too few spaces before comment
id: app-token
with:
app-id: ${{ secrets.RENOVATE_APP_ID }}
Expand All @@ -26,12 +26,12 @@
charts

- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 29 in .github/workflows/renovate.yaml

View workflow job for this annotation

GitHub Actions / lint

29:73 [comments] too few spaces before comment
with:
fetch-depth: 0

- name: Self-hosted Renovate
uses: renovatebot/github-action@2be773c4be8361d8182cc1b750e75bbc75af71b0 # v41.0.7
uses: renovatebot/github-action@3f10d7a25cf0aa7b37519aa771ed9143fcbb5da5 # v41.0.10

Check warning on line 34 in .github/workflows/renovate.yaml

View workflow job for this annotation

GitHub Actions / lint

34:82 [comments] too few spaces before comment
with:
token: "${{ steps.app-token.outputs.token }}"
mount-docker-socket: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# policy, and support documentation.

name: Scorecards supply-chain security
on:

Check warning on line 6 in .github/workflows/scorecards.yaml

View workflow job for this annotation

GitHub Actions / lint

6:1 [truthy] truthy value should be one of [false, true]
# For Branch-Protection check. Only the default branch is supported. See
# https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
branch_protection_rule:
Expand Down Expand Up @@ -32,12 +32,12 @@

steps:
- name: "Checkout code"
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

Check warning on line 35 in .github/workflows/scorecards.yaml

View workflow job for this annotation

GitHub Actions / lint

35:73 [comments] too few spaces before comment
with:
persist-credentials: false

- name: "Run analysis"
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0

Check warning on line 40 in .github/workflows/scorecards.yaml

View workflow job for this annotation

GitHub Actions / lint

40:78 [comments] too few spaces before comment
with:
results_file: results.sarif
results_format: sarif
Expand All @@ -59,14 +59,14 @@
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0

Check warning on line 62 in .github/workflows/scorecards.yaml

View workflow job for this annotation

GitHub Actions / lint

62:80 [comments] too few spaces before comment
with:
name: SARIF file
path: results.sarif
retention-days: 5

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
uses: github/codeql-action/upload-sarif@d68b2d4edb4189fd2a5366ac14e72027bd4b37dd # v3.28.2

Check warning on line 70 in .github/workflows/scorecards.yaml

View workflow job for this annotation

GitHub Actions / lint

70:90 [comments] too few spaces before comment
with:
sarif_file: results.sarif
Loading