Skip to content

Commit b403147

Browse files
dependabot[bot]rfresh2
authored andcommitted
Bump actions/upload-artifact from 6 to 7 in the actions group
Bumps the actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e70f170 commit b403147

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
run: ./gradlew build
3434

3535
- name: Upload Plugin Artifact
36-
uses: actions/upload-artifact@v6
36+
uses: actions/upload-artifact@v7
3737
with:
3838
name: plugin
3939
path: build/libs/*.jar
40+
archive: false
41+
if-no-files-found: error

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ jobs:
3030
run: ./gradlew build
3131

3232
- name: Upload Plugin Artifact
33-
uses: actions/upload-artifact@v6
33+
uses: actions/upload-artifact@v7
3434
with:
3535
name: plugin
3636
path: build/libs/*.jar
37+
archive: false
38+
if-no-files-found: error
3739

3840
- name: Get Plugin Version
3941
run: echo "PLUGIN_VERSION=$(grep '^plugin_version=' gradle.properties | cut -d'=' -f2)" >> $GITHUB_ENV

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ zenithProxyPlugin {
2222
}
2323

2424
repositories {
25+
maven("https://maven.2b2t.vc/snapshots")
2526
maven("https://maven.2b2t.vc/releases") {
2627
description = "ZenithProxy Releases"
2728
}
@@ -31,10 +32,7 @@ repositories {
3132
}
3233

3334
dependencies {
34-
zenithProxy("com.zenith:ZenithProxy:$mc-SNAPSHOT")
35-
36-
/** to include dependencies into your plugin jar **/
37-
// shade("com.github.ben-manes.caffeine:caffeine:3.2.0")
35+
zenithProxy("com.zenith:ZenithProxy:1.21.4-20260217.023035-153")
3836
}
3937

4038
tasks {

0 commit comments

Comments
 (0)