Skip to content

Commit

Permalink
[brief] Update the actions used by the workflows.
Browse files Browse the repository at this point in the history
[detailed]
- This should remove the warnings that were cropping up.
  • Loading branch information
marovira committed Apr 25, 2024
1 parent fc2b116 commit e6c8bc7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup_python
with:
python-version: "3.11"

- name: Cache virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements/ci.txt') }}
path: venv
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup_python
with:
python-version: "3.11"

- name: Cache virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements/ci.txt') }}
path: venv
Expand Down

0 comments on commit e6c8bc7

Please sign in to comment.