Add HTML pages for OIDC resources under /profile/ #4320
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
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5cfe23c062c0aac352e765b1b7cc12ea5255ccc4 # v1.149.0 | |
with: | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rubocop | |
brakeman: | |
name: Brakeman | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5cfe23c062c0aac352e765b1b7cc12ea5255ccc4 # v1.149.0 | |
with: | |
bundler-cache: true | |
- name: Brakeman | |
run: bundle exec brakeman | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kubernetes_version: ["1.22.0"] | |
environment: | |
- staging | |
- production | |
steps: | |
- name: login to Github Packages | |
run: echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: ruby/setup-ruby@5cfe23c062c0aac352e765b1b7cc12ea5255ccc4 # v1.156.0 | |
with: | |
bundler-cache: true | |
- name: krane render | |
run: | | |
gem exec --silent krane render -f config/deploy/$ENVIRONMENT --bindings=environment=$ENVIRONMENT --current-sha=$REVISION > config/deploy/$ENVIRONMENT.rendered.yaml | |
env: | |
ENVIRONMENT: "${{ matrix.environment }}" | |
REVISION: "${{ github.sha }}" | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: "${{ matrix.environment }}.rendered.yaml" | |
path: "config/deploy/${{ matrix.environment }}.rendered.yaml" | |
- name: kubeconform | |
uses: docker://ghcr.io/yannh/kubeconform:v0.6.3 | |
with: | |
entrypoint: "/kubeconform" | |
args: "-strict -summary -output json --kubernetes-version ${{ matrix.kubernetes_version }} config/deploy/${{ matrix.environment }}.rendered.yaml" |