Skip to content

Commit

Permalink
[CI] Upgrade actions where possible to fix node depreciation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Sep 14, 2024
1 parent 5fbb7df commit 09a6ab5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
python-version: [3.8]
steps:
# Download the repository
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup python (Windows VM is Python 3.7 by default, we need at least Python 3.8)
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -89,11 +89,11 @@ jobs:

steps:
# Download the repository
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 09a6ab5

Please sign in to comment.