@@ -24,11 +24,10 @@ jobs:
2424 strategy :
2525 matrix :
2626 python-version : ['3.12']
27- numpy-version : ['2.2']
2827 dependency-set : ["optional"]
2928
3029 steps :
31- - uses : actions/checkout@v5
30+ - uses : actions/checkout@v6
3231 - name : Set HYPOTHESIS_PROFILE based on trigger
3332 run : |
3433 if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
@@ -47,12 +46,12 @@ jobs:
4746 pip install hatch
4847 - name : Set Up Hatch Env
4948 run : |
50- hatch env create test.py${{ matrix.python-version }}-${{ matrix.numpy-version }}-${{ matrix. dependency-set }}
51- hatch env run -e test.py${{ matrix.python-version }}-${{ matrix.numpy-version }}-${{ matrix. dependency-set }} list-env
49+ hatch env create test.py${{ matrix.python-version }}-${{ matrix.dependency-set }}
50+ hatch env run -e test.py${{ matrix.python-version }}-${{ matrix.dependency-set }} list-env
5251 # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
5352 - name : Restore cached hypothesis directory
5453 id : restore-hypothesis-cache
55- uses : actions/cache/restore@v4
54+ uses : actions/cache/restore@v5
5655 with :
5756 path : .hypothesis/
5857 key : cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
@@ -64,13 +63,13 @@ jobs:
6463 id : status
6564 run : |
6665 echo "Using Hypothesis profile: $HYPOTHESIS_PROFILE"
67- hatch env run --env test.py${{ matrix.python-version }}-${{ matrix.numpy-version }}-${{ matrix. dependency-set }} run-hypothesis
66+ hatch env run --env test.py${{ matrix.python-version }}-${{ matrix.dependency-set }} run-hypothesis
6867
6968 # explicitly save the cache so it gets updated, also do this even if it fails.
7069 - name : Save cached hypothesis directory
7170 id : save-hypothesis-cache
7271 if : always() && steps.status.outcome != 'skipped'
73- uses : actions/cache/save@v4
72+ uses : actions/cache/save@v5
7473 with :
7574 path : .hypothesis/
7675 key : cache-hypothesis-${{ runner.os }}-${{ github.run_id }}
0 commit comments