diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 4270a8a..a67be2d 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -22,11 +22,11 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure GitHub Pages id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Prepare Pages source shell: bash @@ -235,7 +235,7 @@ jobs: 'google-site-verification: google1d4c3f230e6af424.html' - name: Upload GitHub Pages artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: ./_site @@ -252,4 +252,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/app/build.gradle b/app/build.gradle index 10bf74c..8d3c74f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -224,6 +224,6 @@ android { dependencies { implementation project(':protocol') testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test:runner:1.6.2' - androidTestImplementation 'androidx.test.ext:junit:1.2.1' + androidTestImplementation 'androidx.test:runner:1.7.0' + androidTestImplementation 'androidx.test.ext:junit:1.3.0' } diff --git a/build.gradle b/build.gradle index 0d9c0cc..02884c8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ plugins { - id 'com.android.application' version '9.3.0' apply false - id 'com.android.library' version '9.3.0' apply false + id 'com.android.application' version '9.3.1' apply false + id 'com.android.library' version '9.3.1' apply false } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index b1b8ef5..eddabd2 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a351597..1e922f4 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 7bf055e..06ee17a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -18,17 +18,17 @@ def forcedSecureVersions = [ 'org.jdom:jdom2:2.0.6.1', 'org.apache.commons:commons-lang3:3.20.0', 'org.apache.httpcomponents:httpclient:4.5.14', - 'io.netty:netty-common:4.2.16.Final', - 'io.netty:netty-buffer:4.2.16.Final', - 'io.netty:netty-codec:4.2.16.Final', - 'io.netty:netty-codec-http:4.2.16.Final', - 'io.netty:netty-codec-http2:4.2.16.Final', - 'io.netty:netty-codec-socks:4.2.16.Final', - 'io.netty:netty-handler:4.2.16.Final', - 'io.netty:netty-handler-proxy:4.2.16.Final', - 'io.netty:netty-resolver:4.2.16.Final', - 'io.netty:netty-transport:4.2.16.Final', - 'io.netty:netty-transport-native-unix-common:4.2.16.Final', + 'io.netty:netty-common:4.2.17.Final', + 'io.netty:netty-buffer:4.2.17.Final', + 'io.netty:netty-codec:4.2.17.Final', + 'io.netty:netty-codec-http:4.2.17.Final', + 'io.netty:netty-codec-http2:4.2.17.Final', + 'io.netty:netty-codec-socks:4.2.17.Final', + 'io.netty:netty-handler:4.2.17.Final', + 'io.netty:netty-handler-proxy:4.2.17.Final', + 'io.netty:netty-resolver:4.2.17.Final', + 'io.netty:netty-transport:4.2.17.Final', + 'io.netty:netty-transport-native-unix-common:4.2.17.Final', ] gradle.beforeProject { project ->