We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17fc423 commit bc4b0e1Copy full SHA for bc4b0e1
.github/workflows/unit-test.yml
@@ -7,6 +7,7 @@ on:
7
8
9
permissions:
10
+ id-token: read
11
security-events: read # This is required to handle authentication for upload-private-artifact-action
12
13
jobs:
action.yml
@@ -27,6 +27,10 @@ runs:
27
run: |
28
set -eu
29
30
+ if [ -n "$ACTIONS_RUNTIME_TOKEN" ] ; then
31
+ echo "ANDY we have a token???"
32
+ fi
33
+
34
if python3 >/dev/null 2>&1 ; then
35
if ! python -c "import requests" 2>/dev/null ; then
36
echo "= Python requests not found. Installing with pip"
0 commit comments