Skip to content

Commit

Permalink
Fix github actions (#47)
Browse files Browse the repository at this point in the history
* Update docker dependency

* Update checkout and setup-python

* Update version
  • Loading branch information
Eeems authored May 20, 2024
1 parent fe4ee54 commit 724126f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python: ['3.11', '3.12']
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
Expand All @@ -34,9 +34,9 @@ jobs:
python: ['3.11', '3.12']
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -65,9 +65,9 @@ jobs:
python: ['3.11', '3.12']
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
Expand All @@ -79,9 +79,9 @@ jobs:
needs: [format, lint, test]
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
Expand All @@ -98,9 +98,9 @@ jobs:
needs: [format, lint, test]
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "toltecmk"
version = "0.3.0"
version = "0.3.1"
authors = [
{ name="Mattéo Delabre", email="[email protected]" },
{ name="Eeems", email="[email protected]" },
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
docker==6.1.3
docker==7.0.0
python-dateutil==2.8.2
pyelftools==0.30

# Pinned due to https://github.com/docker/docker-py/issues/3256
requests==2.31.0

0 comments on commit 724126f

Please sign in to comment.