Skip to content

Commit e8de255

Browse files
committed
fix: update Python version in Docker command for generating UUID in GitHub environment
Signed-off-by: Mohamad Abuelhagag <mohammed.abuelhagag@gmail.com>
1 parent 453c4e8 commit e8de255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default: build
66
@gpg --decrypt --batch --passphrase "$(GPG_PASSPHRASE)" .github.env.gpg >.github.env
77

88
github-env: .github.env
9-
@docker run --rm python:3.7 python -c 'import uuid; print("SUFFIX=%s" % uuid.uuid4())' >>"$(GITHUB_ENV)"
9+
@docker run --rm python:3.12 python -c 'import uuid; print("SUFFIX=%s" % uuid.uuid4())' >>"$(GITHUB_ENV)"
1010
@sed 's/^export //' <.github.env >>"$(GITHUB_ENV)"
1111

1212
integration-tests:

0 commit comments

Comments
 (0)