Skip to content

Commit

Permalink
fix(report_jokes): problem to install python3.9
Browse files Browse the repository at this point in the history
The target python version was not found.
Maybe because it was removed of the package manager registry.

I changed to python 3.11 instead.
  • Loading branch information
pythonbrad authored Oct 7, 2024
1 parent eb26578 commit dd0bd57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/report_jokes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.9
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.10.9
python-version: 3.11

- name: Fetch and render joke
run: |
Expand Down

0 comments on commit dd0bd57

Please sign in to comment.