Don't bother pinning OS images for Github Actions

Fix #1612

The hassle of updating these pins (both for us and our users, most copy our documentation) seems to outweigh the benefit of the pin. The truth is that they're not really pins anyway, Github update them all the time, and they don't work for historical repeatability because old images are retired all the time.
This commit is contained in:
Joe Rickerby
2024-01-27 11:21:22 +00:00
parent e250df5d5d
commit 3bf1908dcb
8 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -38,10 +38,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-11]
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ['3.12']
include:
- os: ubuntu-22.04
- os: ubuntu-latest
python_version: '3.8'
timeout-minutes: 180
steps: