Skip to content

Commit

Permalink
Merge pull request #65 from Gyarbij/main
Browse files Browse the repository at this point in the history
2.1.5 DEV
  • Loading branch information
Gyarbij authored Aug 31, 2024
2 parents c35c804 + 009de0a commit 39f9e77
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
2 changes: 1 addition & 1 deletion .github/workflows/dev-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
platforms: linux/amd64,linux/arm64/v8
push: true
tags: gyarbij/plexist:dev
34 changes: 34 additions & 0 deletions .github/workflows/git-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Docker GitHub Image CI

on:
push:
branches:
- 'dev'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64/v8
push: true
tags: gyarbij/plexist:git
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-slim
FROM python:3.12.5-slim

ENV PYTHONDONTWRITEBYTECODE=1

Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
spotipy>=2.23
plexapi>=4.15.4
deezer-python>=6.1.0
deezer-python>=6.1.0
urllib3>=2.2.2
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability

0 comments on commit 39f9e77

Please sign in to comment.