|
34 | 34 |
|
35 | 35 | steps: |
36 | 36 | - name: Check Out VCS Repository |
37 | | - uses: actions/checkout@v3.6.0 |
| 37 | + uses: actions/checkout@v4.1.0 |
38 | 38 |
|
39 | 39 | - name: Set Up Python ${{ matrix.python_version }} |
40 | 40 | |
|
45 | 45 | run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv" |
46 | 46 |
|
47 | 47 | - name: Restoring/Saving Cache |
48 | | - |
| 48 | + |
49 | 49 | with: |
50 | 50 | path: "venv" |
51 | 51 | key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }} |
@@ -75,18 +75,19 @@ jobs: |
75 | 75 |
|
76 | 76 | steps: |
77 | 77 | - name: Check Out VCS Repository |
78 | | - uses: actions/checkout@v3.6.0 |
| 78 | + uses: actions/checkout@v4.1.0 |
79 | 79 |
|
80 | 80 | - name: Set Up Python ${{ matrix.python_version }} |
81 | 81 | |
82 | 82 | with: |
83 | 83 | python-version: "${{ matrix.python_version }}" |
84 | 84 |
|
85 | 85 | - name: Restoring/Saving Cache |
86 | | - |
| 86 | + |
87 | 87 | with: |
88 | 88 | path: "venv" |
89 | 89 | key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }} |
| 90 | + fail-on-cache-miss: true |
90 | 91 |
|
91 | 92 | - name: Set Tox Environment |
92 | 93 | id: set_tox_environment |
@@ -136,7 +137,7 @@ jobs: |
136 | 137 |
|
137 | 138 | - name: Store Artifacts |
138 | 139 | if: ${{ always() }} |
139 | | - |
| 140 | + |
140 | 141 | with: |
141 | 142 | name: test_reports_${{ matrix.python_version }} |
142 | 143 | path: test-reports/ |
|
0 commit comments