Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

chore(deps): update dependency com.modrinth.minotaur to v2.8.1 (#447) #542

chore(deps): update dependency com.modrinth.minotaur to v2.8.1 (#447)

chore(deps): update dependency com.modrinth.minotaur to v2.8.1 (#447) #542

Workflow file for this run

name: Dependency update check
on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths: [ "./**.gradle.kts", "gradle/**", "catalog/**", ".github/workflows/catalog.yml", "gradle.properties" ]
push:
branches: [ main ]
paths: [ "./**.gradle.kts", "gradle/**", "catalog/**", ".github/workflows/catalog.yml", "gradle.properties" ]
jobs:
validate:
uses: ./.github/workflows/wrapper-validation.yml
build:
needs: validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Run validate-dependencies task
uses: gradle/gradle-build-action@v2
with:
arguments: clean :catalog:validate-dependencies
- name: Upload final catalog
uses: actions/upload-artifact@v3
with:
name: catalog.toml
path: build/catalog/version-catalog/libs.versions.toml
if-no-files-found: error
publish-if-push:
needs: build
if: github.event_name == 'push'
uses: ./.github/workflows/publish.yml
secrets: inherit