chore(container): update ghcr.io/authelia/authelia ( 05b25a0 → 9ad7df9 ) #4386
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Kubeconform" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: ["kubernetes/**"] | |
env: | |
AQUA_CONFIG: ./.github/aqua.yaml | |
jobs: | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: ["kubernetes/main", "kubernetes/storage"] | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@2986852ad836768dfea7781f31828eb3e17990fa # v1.6.2 | |
id: app-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
token: "${{ steps.app-token.outputs.token }}" | |
- name: Install System Tools | |
shell: bash | |
run: sudo apt-get -qq update && sudo apt-get -qq install --no-install-recommends -y curl git jo | |
- name: Cache Aqua | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | |
with: | |
path: ~/.local/share/aquaproj-aqua | |
key: v1-aqua-installer-${{runner.os}}-${{runner.arch}}-${{hashFiles('./.github/aqua.yaml')}} | |
restore-keys: | | |
v1-aqua-installer-${{runner.os}}-${{runner.arch}}- | |
- name: Install Aqua and CLI Tools | |
uses: aquaproj/aqua-installer@928a2ee4243a9ee8312d80dc8cbaca88fb602a91 # v2.2.0 | |
with: | |
aqua_version: v2.21.3 | |
aqua_opts: "" | |
env: | |
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}" | |
- name: Run kubeconform | |
shell: bash | |
run: bash ./.github/scripts/kubeconform.sh ${{ matrix.path }} |