Updated GitHub Actions versions in examples

This commit is contained in:
Kamil Krzyśków 2023-04-30 22:21:56 +02:00
parent b9db2f734c
commit 6ed0203828
3 changed files with 8 additions and 8 deletions

View File

@ -38,7 +38,7 @@ contents:
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- uses: actions/cache@v2 - uses: actions/cache@v3
with: with:
key: ${{ github.ref }} key: ${{ github.ref }}
path: .cache path: .cache
@ -81,7 +81,7 @@ contents:
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- uses: actions/cache@v2 - uses: actions/cache@v3
with: with:
key: ${{ github.ref }} key: ${{ github.ref }}
path: .cache path: .cache

View File

@ -495,11 +495,11 @@ carried out. You might want to:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-python@v2 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- uses: actions/cache@v2 - uses: actions/cache@v3
with: with:
key: ${{ github.ref }} key: ${{ github.ref }}
path: .cache path: .cache

View File

@ -244,11 +244,11 @@ whether the social cards need to be regenerated. You might want to:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-python@v2 - uses: actions/setup-python@v4
with: with:
python-version: 3.x python-version: 3.x
- uses: actions/cache@v2 - uses: actions/cache@v3
with: with:
key: ${{ github.ref }} key: ${{ github.ref }}
path: .cache path: .cache