Skip to content

Commit

Permalink
.github: pump actions versions
Browse files Browse the repository at this point in the history
To fix deprecation warnings on https://github.com/kontron/python-aardvark/actions/runs/8702993753
the used action needs to be updated.

actions/checkout: https://github.com/actions/checkout/releases/tag/v4.0.0
actions/setup-python: https://github.com/actions/setup-python/releases/tag/v5.0.0

Signed-off-by: Heiko Thiery <[email protected]>
  • Loading branch information
hthiery committed Apr 16, 2024
1 parent e66879e commit 2ccfe8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python $${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
Expand Down

0 comments on commit 2ccfe8a

Please sign in to comment.