Skip to content

chore(deps): bump the github-actions-dependencies group across 2 dire… #418

chore(deps): bump the github-actions-dependencies group across 2 dire…

chore(deps): bump the github-actions-dependencies group across 2 dire… #418

Workflow file for this run

---
name: Internal - Main - Continuous Integration
on: # yamllint disable-line rule:truthy
push:
branches: [main]
tags: ["*"]
workflow_dispatch:
schedule:
- cron: "25 8 * * 1"
permissions:
actions: write
contents: write
issues: read
packages: write
pages: write
pull-requests: write
security-events: write
statuses: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
uses: ./.github/workflows/__shared-ci.yml
secrets: inherit
clean:
needs: ci
uses: ./.github/workflows/prune-pull-requests-images-tags.yml
with:
images: |
[
"application-test",
"test-multi-arch",
"test-mono-arch"
]
clean-with-cache:
needs: ci
uses: ./.github/workflows/prune-pull-requests-images-tags.yml
with:
prune-cache-images: true
images: |
[
"test-build-args-secrets"
]
helm-docs:
needs: ci
if: github.event_name != 'schedule'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./actions/helm/generate-docs
with:
working-directory: ./tests/charts
github-app-id: ${{ vars.CI_BOT_APP_ID }}
github-app-key: ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}
release:
needs: ci
if: github.event_name != 'schedule'
uses: hoverkraft-tech/ci-github-publish/.github/workflows/release-actions.yml@7ce3b41507f05379e3658efe955327873c2654b4 # 0.7.1
with:
update-all: ${{ (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || github.event_name == 'workflow_dispatch' }}
github-app-id: ${{ vars.CI_BOT_APP_ID }}
secrets:
github-app-key: ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}