Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Dec 20, 2023
1 parent 678db21 commit d7d8697
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ registries:
blamejared:
type: maven-repository
url: https://maven.blamejared.com/
pluginportal:
type: maven-repository
url: https://plugins.gradle.org/m2/
updates:
- package-ecosystem: "gradle"
directory: "/"
Expand All @@ -36,6 +39,7 @@ updates:
- lukebemish
- architectury
- blamejared
- pluginportal
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"path": "build/repo"
},
"name": "Archive Publishable Artifacts",
"uses": "actions/upload-artifact@v3"
"uses": "actions/upload-artifact@v4"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"script": "const pull_requests = ${{ toJSON(github.event.workflow_run.pull_requests) }};\nif (!pull_requests.length) {\n return core.error(\"This workflow doesn't match any pull requests!\");\n}\nlet allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({\n owner: context.repo.owner,\n repo: context.repo.repo,\n run_id: context.payload.workflow_run.id,\n});\nlet matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {\n return artifact.name == \"artifacts\"\n})[0];\nlet download = await github.rest.actions.downloadArtifact({\n owner: context.repo.owner,\n repo: context.repo.repo,\n artifact_id: matchArtifact.id,\n archive_format: 'zip',\n});\nlet fs = require('fs');\nfs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/repo.zip`, Buffer.from(download.data));"
},
"name": "Download Artifacts",
"uses": "actions/github-script@v6"
"uses": "actions/github-script@v7"
},
{
"name": "Unpack Artifacts",
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ parchment_mappings = "2023.08.20"

forge = "1.20.1-47.2.17"

fabric_loader = "0.15.1"
fabric_loader = "0.15.2"
fabric_api = "0.91.0+1.20.1"

mdg_plugin = "1.4.3"
mdg_dsl = "1.5.1"
autoservice = "1.1.1"

architectury_loom = "1.4.367"
architectury_loom = "1.4.373"

jetbrains_annotations = "24.1.0"

minotaur = "2.8.7"

managedversioning = "1.2.2"
managedversioning = "1.2.3"

mixinextras = "0.3.1"
mixinextras = "0.3.2"

cca = "5.2.2"

Expand Down Expand Up @@ -53,4 +53,4 @@ managedversioning = { id = "dev.lukebemish.managedversioning", version.ref = "ma
mdg_plugin = { id = "org.groovymc.modsdotgroovy", version.ref = "mdg_plugin" }
architectury_loom = { id = "dev.architectury.loom", version.ref = "architectury_loom" }
minotaur = { id = "com.modrinth.minotaur", version.ref = "minotaur" }
curseforgegradle = {id = "net.darkhax.curseforgegradle", version = "1.1.17"}
curseforgegradle = {id = "net.darkhax.curseforgegradle", version = "1.1.18"}

0 comments on commit d7d8697

Please sign in to comment.