Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 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 Aug 9, 2026
741eb4c
.github/workflows/test-pr.yml: pin astral-sh/setup-uv to v9.0.0
palinatolmach Aug 9, 2026
27c3009
.github/workflows/{master-push,release}.yml: remove secret-based CD
palinatolmach Aug 9, 2026
714e981
.github/workflows/update-version.yml: remove dependency-bump automation
palinatolmach Aug 9, 2026
09a35e9
.github/scripts/check-cachix-pin.sh: remove cachix-pin verification
palinatolmach Aug 9, 2026
a070e56
.github/workflows/release.yml: shorten header comment
palinatolmach Aug 9, 2026
a279462
release.yml: set cancel-in-progress to false
anvacaru Aug 10, 2026
42767ea
release.yml: drop the 'with:' block
anvacaru Aug 10, 2026
95fdf0f
version.sh: run uv --project kevm-pyk lock
anvacaru Aug 10, 2026
940a37c
workflows: pin commit SHA's instead of version numbers
anvacaru Aug 10, 2026
785673f
release.yml: refactor gh release create command
anvacaru Aug 10, 2026
d825b52
test-pr.yml: set read-only permissions
anvacaru Aug 10, 2026
4fcaf89
version.sh: cleanup
anvacaru Aug 10, 2026
48b6126
test-pr.yml: update docker invocation
anvacaru Aug 10, 2026
004f001
temporarily remove release.yml
anvacaru Aug 12, 2026
d577dc0
address zizmor findings
anvacaru Aug 12, 2026
d3bc3cb
action.yml: address review comments
anvacaru Aug 12, 2026
1bdce27
.github/actions/with-docker, workflows/Dockerfile: drop the unused di…
anvacaru Aug 12, 2026
d8e0c75
actionlint: fix findings
anvacaru Aug 12, 2026
1cd4b87
add workflow to run actionlint and zizmor
anvacaru Aug 12, 2026
6e75b7c
lint-workflows: use zizmor-action instead of uvx
anvacaru Aug 12, 2026
1d51acb
Update .github/workflows/lint-workflows.yml
anvacaru Aug 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions .github/actions/with-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ runs:
run: |
set -euxo pipefail

CONTAINER_NAME=${{ inputs.container-name }}
SUBDIR=${{ inputs.subdir }}
BASE_OS=${{ inputs.os }}
BASE_DISTRO=${{ inputs.distro }}
DOCKERFILE=${{ inputs.dockerfile }}
LLVM_VERSION=${{ inputs.llvm }}
TAG_NAME=${{ inputs.tag-name }}
CONTAINER_NAME=${INPUTS_CONTAINER_NAME}
SUBDIR=${INPUTS_SUBDIR}
BASE_OS=${INPUTS_OS}
BASE_DISTRO=${INPUTS_DISTRO}
DOCKERFILE=${INPUTS_DOCKERFILE}
LLVM_VERSION=${INPUTS_LLVM}
TAG_NAME=${INPUTS_TAG_NAME}

USER=github-user
GROUP=${USER}
Expand Down Expand Up @@ -83,3 +83,11 @@ runs:

docker cp . ${CONTAINER_NAME}:/home/${USER}/workspace
docker exec ${CONTAINER_NAME} chown -R ${USER}:${GROUP} /home/${USER}
env:
INPUTS_CONTAINER_NAME: ${{ inputs.container-name }}
INPUTS_SUBDIR: ${{ inputs.subdir }}
INPUTS_OS: ${{ inputs.os }}
INPUTS_DISTRO: ${{ inputs.distro }}
INPUTS_DOCKERFILE: ${{ inputs.dockerfile }}
INPUTS_LLVM: ${{ inputs.llvm }}
INPUTS_TAG_NAME: ${{ inputs.tag-name }}
Comment thread
anvacaru marked this conversation as resolved.
Outdated
99 changes: 0 additions & 99 deletions .github/scripts/check-cachix-pin.sh

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/master-push.yml

This file was deleted.

172 changes: 0 additions & 172 deletions .github/workflows/release.yml

This file was deleted.

Loading
Loading