Skip to content

Commit

Permalink
ci: Use node 22 and latest Python 3.12.x (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster authored Nov 12, 2024
1 parent 1794b8b commit 0b6fdde
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI

env:
PYTHON_VERSION: '3.12.2'
TZ: Europe/Zurich
PYTHON_VERSION: '3.12.7'
NODE_VERSION: '22.x'

on:
push:
Expand Down Expand Up @@ -70,7 +72,7 @@ jobs:
uses: actions/setup-node@v4
if: steps.cache-npm.outputs.cache-hit != 'true'
with:
node-version: '18.x'
node-version: ${{ env.NODE_VERSION }}

- name: Install Indico
run: |
Expand Down Expand Up @@ -110,7 +112,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: ${{ env.NODE_VERSION }}

- name: Download environment
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -180,7 +182,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: ${{ env.NODE_VERSION }}

- name: Download environment
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 0b6fdde

Please sign in to comment.