Skip to content

Commit

Permalink
update ci deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nlef committed Mar 7, 2024
1 parent 3f5cbab commit 8f4504b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.1

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

Expand All @@ -39,14 +39,14 @@ jobs:
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3.1.0
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4.2.0
uses: docker/metadata-action@v5.5.1
with:
images: lefskiy/moonraker-telegram-bot
tags: |
Expand All @@ -57,13 +57,13 @@ jobs:
type=sha
-
name: Login to Docker Hub
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ black==23.3.0
isort==5.12.0
memory_profiler==0.61.0
mypy==0.982
numpy~=1.21.6
numpy~=1.24.4
opencv-python~=3.4.17.63
pre-commit==3.5.0
pylint==2.17.4
Expand Down

0 comments on commit 8f4504b

Please sign in to comment.