Skip to content

Commit

Permalink
Merge pull request #201 from madiele/main release 1.2.2
Browse files Browse the repository at this point in the history
release 1.2.2
  • Loading branch information
madiele authored Aug 5, 2024
2 parents 9d901a1 + f654b9a commit bdb8eac
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,30 @@ name = "app"
path = "src/main.rs"

[dependencies]
actix-rt = "=2.9.0"
actix-rt = "=2.10.0"
google-youtube3 = "=5.0.4"
actix-web = "=4.5.1"
async-trait = "=0.1.80"
url = { version="=2.5.0", features = ["serde"]}
actix-web = "=4.8.0"
async-trait = "=0.1.81"
url = { version="=2.5.2", features = ["serde"]}
futures = "=0.3.30"
log = "=0.4.21"
regex = "=1.10.4"
reqwest = { version = "=0.12.4", features = ["json"] }
serde = "=1.0.199"
serde_json = "=1.0.116"
tokio = { version = "=1.37.0", features = ["macros", "process"]}
uuid = { version= "=1.8.0", features = ["v4", "serde"]}
log = "=0.4.22"
regex = "=1.10.5"
reqwest = { version = "=0.12.5", features = ["json"] }
serde = "=1.0.204"
serde_json = "=1.0.121"
tokio = { version = "=1.39.2", features = ["macros", "process"]}
uuid = { version= "=1.10.0", features = ["v4", "serde"]}
genawaiter = {version = "=0.99", features = ["futures03"] }
openssl = { version = "*", features = ["vendored"] } #this is here just to make cross-compiling work during github actions
rss = { version = "=2.0", features = ["serde"] }
eyre = "=0.6"
simple_logger = "=4.3"
redis = { version = "=0.25", features = ["tokio-comp"] }
simple_logger = "=5.0"
redis = { version = "=0.26", features = ["tokio-comp"] }
mime = "=0.3.17"
cached = { version = "=0.50.0", features = ["redis_tokio"] }
cached = { version = "=0.53.1", features = ["redis_tokio"] }
iso8601-duration = "=0.2.0"
chrono = "=0.4.38"
feed-rs = "=1.4.0"
feed-rs = "=2.1.0"

[dev-dependencies]
temp-env ={ version = "=0.3.6", features = ["async_closure"] }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# by using --platform=$BUILDPLATFORM we force the build step
# to always run on the native architecture of the build machine
# making the build time shorter
FROM --platform=$BUILDPLATFORM rust:1.75 as builder
FROM --platform=$BUILDPLATFORM rust:1.78 as builder

ARG BUILDPLATFORM
ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# this is only used to track the version in the Dockerfile and with depend-a-bot
yt-dlp==2024.4.9
yt-dlp==2024.8.1

0 comments on commit bdb8eac

Please sign in to comment.