-
Notifications
You must be signed in to change notification settings - Fork 155
Enable CI, disable CD #2878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Enable CI, disable CD #2878
Changes from 21 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
a766ef1
.github/workflows/test-pr.yml: bump actions/checkout to v7, actions/s…
palinatolmach 741eb4c
.github/workflows/test-pr.yml: pin astral-sh/setup-uv to v9.0.0
palinatolmach 27c3009
.github/workflows/{master-push,release}.yml: remove secret-based CD
palinatolmach 714e981
.github/workflows/update-version.yml: remove dependency-bump automation
palinatolmach 09a35e9
.github/scripts/check-cachix-pin.sh: remove cachix-pin verification
palinatolmach a070e56
.github/workflows/release.yml: shorten header comment
palinatolmach a279462
release.yml: set cancel-in-progress to false
anvacaru 42767ea
release.yml: drop the 'with:' block
anvacaru 95fdf0f
version.sh: run uv --project kevm-pyk lock
anvacaru 940a37c
workflows: pin commit SHA's instead of version numbers
anvacaru 785673f
release.yml: refactor gh release create command
anvacaru d825b52
test-pr.yml: set read-only permissions
anvacaru 4fcaf89
version.sh: cleanup
anvacaru 48b6126
test-pr.yml: update docker invocation
anvacaru 004f001
temporarily remove release.yml
anvacaru d577dc0
address zizmor findings
anvacaru d3bc3cb
action.yml: address review comments
anvacaru 1bdce27
.github/actions/with-docker, workflows/Dockerfile: drop the unused di…
anvacaru d8e0c75
actionlint: fix findings
anvacaru 1cd4b87
add workflow to run actionlint and zizmor
anvacaru 6e75b7c
lint-workflows: use zizmor-action instead of uvx
anvacaru 1d51acb
Update .github/workflows/lint-workflows.yml
anvacaru File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Custom labels for the self-hosted runners; actionlint cannot discover them. | ||
| self-hosted-runner: | ||
| labels: | ||
| - normal | ||
| - fast | ||
| - ARM64 |
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| ARG Z3_VERSION | ||
| ARG K_VERSION | ||
| ARG BASE_DISTRO | ||
| ARG LLVM_VERSION | ||
|
|
||
| ARG Z3_VERSION | ||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| name: 'Lint Workflows' | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - 'master' | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| actionlint: | ||
| name: 'actionlint' | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: 'Check out code' | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | ||
| with: | ||
| persist-credentials: false | ||
| - name: 'Install actionlint' | ||
| env: | ||
| # Pin the release and verify it, both values should be updated together. | ||
| ACTIONLINT_VERSION: '1.7.12' | ||
| ACTIONLINT_SHA256: '8aca8db96f1b94770f1b0d72b6dddcb1ebb8123cb3712530b08cc387b349a3d8' | ||
| run: | | ||
| set -euxo pipefail | ||
| curl --fail --silent --show-error --location --output actionlint.tar.gz \ | ||
| "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" | ||
| echo "${ACTIONLINT_SHA256} actionlint.tar.gz" | sha256sum --check --strict | ||
| tar --extract --gzip --file actionlint.tar.gz actionlint | ||
| - name: 'Run actionlint' | ||
| run: ./actionlint -color | ||
|
|
||
| zizmor: | ||
| name: 'zizmor' | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| security-events: write # upload SARIF, so findings annotate the diff | ||
| steps: | ||
| - name: 'Check out code' | ||
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | ||
| with: | ||
| persist-credentials: false | ||
| - name: 'Run zizmor' | ||
| uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2 | ||
| with: | ||
| version: '1.29.0' | ||
| online-audits: false | ||
| inputs: .github/ | ||
| advanced-security: true | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.