build(deps): bump github.com/opencontainers/image-spec from 1.0.2-0.20190823105129-775207bd45b6 to 1.0.2 #1172
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: checks | |
on: | |
pull_request: | |
jobs: | |
commit-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v5 | |
github-actions-yaml-lint: | |
runs-on: ubuntu-latest | |
name: Github Actions yaml linter | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: reviewdog/action-actionlint@v1 | |
lint: | |
runs-on: ubuntu-latest | |
name: Run all lints | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import common environment variables | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go-version }} | |
check-latest: true | |
cache: true | |
- name: Use tools cache | |
uses: ./.github/tools-cache | |
- name: golangci-lint | |
run: make lint-golang | |
- name: jsonnet-fmt | |
run: make fmt-jsonnet && git diff --exit-code | |
- name: jsonnet-lint | |
run: make lint-jsonnet | |
- name: shellcheck | |
run: make lint-shell | |
generate: | |
runs-on: ubuntu-latest | |
name: Generate and format | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import common environment variables | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go-version }} | |
check-latest: true | |
cache: true | |
- run: make --always-make generate && git diff --exit-code | |
- run: make --always-make bundle && git diff --exit-code | |
tool-versions: | |
runs-on: ubuntu-latest | |
name: Validate tools cache | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import common environment variables | |
run: cat ".github/env" >> $GITHUB_ENV | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go-version }} | |
check-latest: true | |
cache: true | |
- name: Use tools cache | |
uses: ./.github/tools-cache | |
- run: make --always-make tools && git diff --exit-code | |
build-bundle-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import common environment variables | |
run: cat ".github/env" >> $GITHUB_ENV | |
- name: Setup Go environment | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go-version }} | |
check-latest: true | |
cache: true | |
- name: Install tools | |
uses: ./.github/tools-cache | |
- name: Build Bundle Image | |
run: make bundle-image | |
e2e-tests-olm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import common environment variables | |
run: cat ".github/env" >> $GITHUB_ENV | |
- name: e2e tests through OLM | |
uses: ./.github/e2e-tests-olm | |
with: | |
go-version: ${{ env.go-version }} |