Skip to content

Commit

Permalink
Upgrade GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkins committed Jun 22, 2024
1 parent ef906f5 commit 6048246
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
jobs:
test:
name: Test -- ${{ matrix.testenv }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
Expand All @@ -19,7 +19,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
Expand All @@ -29,7 +29,7 @@ jobs:
with:
node-version-file: '.nvmrc'
- name: Node.js npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.npm
Expand Down
6 changes: 3 additions & 3 deletions {{cookiecutter.project_slug}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ concurrency:
jobs:
test:
name: Test -- tox
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
Expand All @@ -24,7 +24,7 @@ jobs:
with:
node-version-file: '.nvmrc'
- name: Node.js npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.npm
Expand Down

0 comments on commit 6048246

Please sign in to comment.