From 0caabf80f0853b7dbcb8d53560fe977cc697f89c Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Thu, 4 Jul 2024 13:38:46 -0700 Subject: [PATCH] Bump default versions to latest People copy/paste these values all the time... might as well start them off on the right foot with a modern default. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 21960a0..864fda7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: '3.12' - run: python my_script.py ``` @@ -31,7 +31,7 @@ steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 'pypy3.9' + python-version: 'pypy3.10' - run: python my_script.py ``` @@ -41,7 +41,7 @@ steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 'graalpy-22.3' + python-version: 'graalpy-24.0' - run: python my_script.py ``` @@ -76,7 +76,7 @@ steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.9' + python-version: '3.12' cache: 'pip' # caching pip dependencies - run: pip install -r requirements.txt ```