Skip to content

Commit f0e71ef

Browse files
authored
test: Update action.yml
1 parent 0145c66 commit f0e71ef

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

action.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,8 @@ runs:
4848
python3 -m venv venv
4949
source venv/bin/activate
5050
51-
# Download artifact
52-
python3 -m pip download -r "$GITHUB_ACTION_PATH/requirements.txt"
53-
54-
# Verify artifact attestations
55-
if ! gh attestation verify commit_check-*.whl -R commit-check/commit-check; then
56-
echo "Artifact verification failed. Aborting installation."
57-
exit 1
58-
fi
59-
60-
# Install artifact
61-
python3 -m pip install commit_check-*.whl pygithub-*.whl
51+
# Install artifacts
52+
python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
6253
6354
python3 "$GITHUB_ACTION_PATH/main.py"
6455
env:

0 commit comments

Comments
 (0)