Pin SHA commits and update docs with latest versions (#1338)

* Update GitHub Actions to use checkout and setup-python actions version 7

* Fix formatting in publish-immutable-actions.yml
This commit is contained in:
Haritha 2026-07-19 22:02:03 -05:00 committed by GitHub
parent 4ab7e95f05
commit 5fda3b95a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 128 additions and 128 deletions

View file

@ -29,8 +29,8 @@ See [action.yml](action.yml)
**Python**
```yaml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.13'
- run: python my_script.py
@ -39,8 +39,8 @@ steps:
**PyPy**
```yaml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: 'pypy3.10'
- run: python my_script.py
@ -49,8 +49,8 @@ steps:
**GraalPy**
```yaml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: 'graalpy-24.0'
- run: python my_script.py
@ -59,8 +59,8 @@ steps:
**Free threaded Python**
```yaml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.13t'
- run: python my_script.py
@ -94,8 +94,8 @@ The action defaults to searching for a dependency file (`requirements.txt` or `p
```yaml
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.13'
cache: 'pip' # caching pip dependencies