We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5103eb8 commit 50c0a86Copy full SHA for 50c0a86
.github/workflows/tests_hw.yml
@@ -19,7 +19,7 @@ jobs:
19
env:
20
id: ${{ github.event.pull_request.number || github.ref }}-${{ github.event.pull_request.head.sha || github.sha }}-${{ inputs.chip }}-${{ inputs.type }}
21
container:
22
- image: python:3.10.1-bullseye
+ image: python:3.12.4-bullseye
23
options: --privileged
24
steps:
25
- name: Check if already passed
@@ -38,7 +38,7 @@ jobs:
38
cache_exists=${{ steps.cache-results.outputs.cache-hit == 'true' }}
39
enabled=true
40
41
- if [[ $cache_exists == 'true' ]]; then
+ if [ "$cache_exists" == "true" ]; then
42
echo "Already ran, skipping"
43
enabled=false
44
fi
0 commit comments