Compare commits

...

7 Commits

6 changed files with 12 additions and 12 deletions

View File

@ -13,7 +13,7 @@ jobs:
matrix: matrix:
java: [ 21 ] java: [ 21 ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: set up JDK ${{ matrix.java }} - name: set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5 uses: actions/setup-java@v5

View File

@ -35,7 +35,7 @@ jobs:
sleep: 120 sleep: 120
fail-fast: false fail-fast: false
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/download-artifact@v5 - uses: actions/download-artifact@v5
with: with:
name: piped.jar name: piped.jar

View File

@ -26,7 +26,7 @@ jobs:
- image: 1337kavin/piped:graalvm-jvm - image: 1337kavin/piped:graalvm-jvm
dockerfile: ./Dockerfile.graalvm-jvm.ci dockerfile: ./Dockerfile.graalvm-jvm.ci
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/download-artifact@v5 - uses: actions/download-artifact@v5
with: with:
name: piped.jar name: piped.jar

View File

@ -12,7 +12,7 @@ jobs:
build-old: build-old:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
with: with:
ref: ${{ github.event.pull_request.base.sha }} ref: ${{ github.event.pull_request.base.sha }}
- name: set up JDK 21 - name: set up JDK 21
@ -48,7 +48,7 @@ jobs:
sleep: 120 sleep: 120
fail-fast: false fail-fast: false
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- run: echo "unknown" > VERSION - run: echo "unknown" > VERSION
- uses: actions/download-artifact@v5 - uses: actions/download-artifact@v5
with: with:

View File

@ -7,7 +7,7 @@ jobs:
build-and-test: build-and-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: set up JDK 21 - name: set up JDK 21
uses: actions/setup-java@v5 uses: actions/setup-java@v5

View File

@ -11,10 +11,10 @@ repositories {
dependencies { dependencies {
implementation 'org.apache.commons:commons-lang3:3.18.0' implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.apache.commons:commons-text:1.13.1' implementation 'org.apache.commons:commons-text:1.14.0'
implementation 'commons-io:commons-io:2.19.0' implementation 'commons-io:commons-io:2.20.0'
implementation 'it.unimi.dsi:fastutil-core:8.5.16' implementation 'it.unimi.dsi:fastutil-core:8.5.16'
implementation 'commons-codec:commons-codec:1.18.0' implementation 'commons-codec:commons-codec:1.19.0'
implementation 'org.bouncycastle:bcprov-jdk18on:1.81' implementation 'org.bouncycastle:bcprov-jdk18on:1.81'
implementation 'com.github.FireMasterK:NewPipeExtractor:92809cedefd89ce68bc4de8763e9d5f2760f5899' implementation 'com.github.FireMasterK:NewPipeExtractor:92809cedefd89ce68bc4de8763e9d5f2760f5899'
implementation 'com.github.FireMasterK:nanojson:a507525e549a836c3a8b6ab7090dca38e92942ef' implementation 'com.github.FireMasterK:nanojson:a507525e549a836c3a8b6ab7090dca38e92942ef'
@ -23,7 +23,7 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2' implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
implementation 'com.rometools:rome:2.1.0' implementation 'com.rometools:rome:2.1.0'
implementation 'com.rometools:rome-modules:2.1.0' implementation 'com.rometools:rome-modules:2.1.0'
implementation 'org.jsoup:jsoup:1.21.1' implementation 'org.jsoup:jsoup:1.21.2'
implementation 'io.activej:activej-common:5.5' implementation 'io.activej:activej-common:5.5'
implementation 'io.activej:activej-http:5.5' implementation 'io.activej:activej-http:5.5'
implementation 'io.activej:activej-boot:5.5' implementation 'io.activej:activej-boot:5.5'
@ -35,13 +35,13 @@ dependencies {
implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final' implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final'
implementation 'org.liquibase:liquibase-core:4.33.0' implementation 'org.liquibase:liquibase-core:4.33.0'
implementation('org.liquibase.ext:liquibase-yugabytedb:4.33.0') { exclude group: 'org.liquibase' } implementation('org.liquibase.ext:liquibase-yugabytedb:4.33.0') { exclude group: 'org.liquibase' }
implementation 'com.zaxxer:HikariCP:6.3.0' implementation 'com.zaxxer:HikariCP:6.3.2'
implementation 'org.springframework.security:spring-security-crypto:6.5.3' implementation 'org.springframework.security:spring-security-crypto:6.5.3'
implementation 'commons-logging:commons-logging:1.3.5' implementation 'commons-logging:commons-logging:1.3.5'
implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0")) implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0"))
implementation 'com.squareup.okhttp3:okhttp' implementation 'com.squareup.okhttp3:okhttp'
implementation 'com.squareup.okhttp3:okhttp-brotli' implementation 'com.squareup.okhttp3:okhttp-brotli'
implementation 'io.sentry:sentry:8.19.1' implementation 'io.sentry:sentry:8.21.0'
implementation 'rocks.kavin:reqwest4j:1.0.14' implementation 'rocks.kavin:reqwest4j:1.0.14'
implementation 'io.minio:minio:8.5.17' implementation 'io.minio:minio:8.5.17'
compileOnly 'org.projectlombok:lombok:1.18.38' compileOnly 'org.projectlombok:lombok:1.18.38'