Skip to content

Commit

Permalink
fix(ci): pin Python 3.11 for playwright workflow
Browse files Browse the repository at this point in the history
Same problem and same solution as in
eclipse-theia/theia#13008.

Contributed on behalf of STMicroelectronics
  • Loading branch information
planger committed Nov 1, 2023
1 parent 5764ecb commit 4d958de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"

- name: Use Python 3.x
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.11"

- name: Build
shell: bash
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: Performance

on:
workflow_dispatch:
pull_request: # FIXME JUST FOR TESTING
branches:
- main
schedule:
- cron: "0 5 * * *" # Runs every day at 5am: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule

Expand All @@ -21,10 +18,10 @@ jobs:
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- name: Use Python 3.x
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.11"
- name: Build
shell: bash
run: yarn
Expand Down

0 comments on commit 4d958de

Please sign in to comment.