Attempt to fix CI for external PRs #7221
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
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ruby/setup-ruby@98aefb3c83eea830993080938ed245dc8e2b843b # v1.198.0 | |
with: | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rubocop | |
brakeman: | |
name: Brakeman | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ruby/setup-ruby@98aefb3c83eea830993080938ed245dc8e2b843b # v1.198.0 | |
with: | |
bundler-cache: true | |
- name: Brakeman | |
run: bundle exec brakeman | |
importmap: | |
name: Importmap Verify | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ruby/setup-ruby@98aefb3c83eea830993080938ed245dc8e2b843b # v1.198.0 | |
with: | |
bundler-cache: true | |
- name: Importmap Verify | |
run: bundle exec rake importmap:verify | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
kubernetes_version: ["1.29.1"] | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ruby/setup-ruby@98aefb3c83eea830993080938ed245dc8e2b843b # v1.198.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@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: "${{ matrix.environment }}.rendered.yaml" | |
path: "config/deploy/${{ matrix.environment }}.rendered.yaml" | |
- name: kubeconform | |
uses: docker://ghcr.io/yannh/kubeconform@sha256:03f6b236ef64f20b4bc950209d6254b109e23b4b05e7811649f59eae5659fa58 # v0.6.3 | |
with: | |
entrypoint: "/kubeconform" | |
args: "-strict -summary -output json --kubernetes-version ${{ matrix.kubernetes_version }} config/deploy/${{ matrix.environment }}.rendered.yaml" | |
frizbee: | |
name: Frizbee | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: segiddins/frizbee-action@c162fdaa6c73525a577d2d6eb193683dfc9ba2be # segiddins/run-in-place | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
action_paths: '[".github/workflows", ".github/actions"]' | |
dockerfiles: '["./Dockerfile", ".devcontainer/Dockerfile"]' | |
docker_compose: '["./docker-compose.yml", ".devcontainer/docker-compose.yml"]' | |
fail_on_unpinned: true | |
open_pr: false | |
repo_root: "." |