Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand All @@ -252,4 +252,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
22 changes: 11 additions & 11 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 ->
Expand Down
Loading