{"id":13533242,"url":"https://github.com/MeilCli/gradle-update-check-action","last_synced_at":"2025-04-01T21:32:00.944Z","repository":{"id":36988825,"uuid":"211603231","full_name":"MeilCli/gradle-update-check-action","owner":"MeilCli","description":"gradle maven new package version check action for GitHub Actions.","archived":false,"fork":false,"pushed_at":"2024-05-01T09:00:51.000Z","size":2590,"stargazers_count":15,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-01T12:35:43.572Z","etag":null,"topics":["actions","github-actions","gradle","maven"],"latest_commit_sha":null,"homepage":"https://github.com/MeilCli/actions","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MeilCli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"MeilCli"}},"created_at":"2019-09-29T04:27:56.000Z","updated_at":"2024-08-01T12:02:09.110Z","dependencies_parsed_at":"2023-10-23T15:32:01.498Z","dependency_job_id":"a2a78ee2-04bf-414e-be9e-8b8070c2fd57","html_url":"https://github.com/MeilCli/gradle-update-check-action","commit_stats":{"total_commits":495,"total_committers":5,"mean_commits":99.0,"dds":"0.15555555555555556","last_synced_commit":"71b59af08498c7713a6021fcc8231766f8f9683d"},"previous_names":[],"tags_count":99,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fgradle-update-check-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fgradle-update-check-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fgradle-update-check-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeilCli%2Fgradle-update-check-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MeilCli","download_url":"https://codeload.github.com/MeilCli/gradle-update-check-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246713294,"owners_count":20821870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions","gradle","maven"],"created_at":"2024-08-01T07:01:17.947Z","updated_at":"2025-04-01T21:32:00.913Z","avatar_url":"https://github.com/MeilCli.png","language":"TypeScript","funding_links":["https://github.com/sponsors/MeilCli"],"categories":["Community Resources"],"sub_categories":["Notifications and Messages"],"readme":"# gradle-update-check-action\n[![CI-Master](https://github.com/MeilCli/gradle-update-check-action/actions/workflows/ci-master.yml/badge.svg)](https://github.com/MeilCli/gradle-update-check-action/actions/workflows/ci-master.yml)  \ngradle maven new package version check action for GitHub Actions.\n\n## Thanks\nThis action is using [ben-manes/gradle-versions-plugin](https://github.com/ben-manes/gradle-versions-plugin).\n\n## Required\nThis action must execute after [setup-java](https://github.com/actions/setup-java).\n\nAnd, your repository must include gradle wrapper files.\n\n## Example\nSlack notification example, using [8398a7/action-slack](https://github.com/8398a7/action-slack):\n\n```yaml\n\nname: Check Package\n\non: \n  schedule:\n    - cron: '0 8 * * 5' # every friday AM 8:00\njobs:\n  maven:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v4\n    - uses: actions/setup-java@v4\n      with:\n        java-version: 1.8\n    - name: Grant permission\n      run: chmod +x gradlew\n    - uses: MeilCli/gradle-update-check-action@v4\n      id: outdated\n    - uses: 8398a7/action-slack@v2\n      if: steps.outdated.outputs.has_maven_update != 'false'\n      with:\n        status: ${{ job.status }}\n        text: ${{ steps.outdated.outputs.maven_update_text }}\n        author_name: GitHub Actions\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}\n```\nYou can also pin to a [specific release](https://github.com/MeilCli/gradle-update-check-action/releases) version in the format `@v4.x.x`\n\n## input\n- `build_gradle_files`\n  - optional\n  - target root build.gradle files\n  - if multiple files, write multiline\n- `skip_plugin_dependency`\n  - optional\n  - skip automally add dependency of gradle-versions-plugin\n  - value: `true` or `false`, default: `false`\n- `revision`\n  - optional\n  - version check revision\n  - more information? see [ben-manes/gradle-versions-plugin](https://github.com/ben-manes/gradle-versions-plugin)\n  - value: `release` or `milestone` or `integration`, default: `release`\n- `output_text_style`\n  - optional\n  - output text style\n  - value: `short` or `long`, default: `short`\n\n## output\n- `has_maven_update`\n  - has new package version information\n  - value: `true` or `false`\n- `maven_update_text`\n  - new package version information text, styled by output_text_style\n- `maven_update_json`\n  - new package version information json\n\n## Contributes\n[\u003cimg src=\"https://gist.github.com/MeilCli/d52f6f6978c53889b76bf5ab35478baf/raw/99289e53693c8bfa1bb50361772e95f95bf62e76/metrics_contributors.svg\"\u003e](https://github.com/MeilCli/gradle-update-check-action/graphs/contributors)\n\n### Could you want to contribute?\nsee [Contributing.md](./.github/CONTRIBUTING.md)\n\n## License\n[\u003cimg src=\"https://gist.github.com/MeilCli/d52f6f6978c53889b76bf5ab35478baf/raw/99289e53693c8bfa1bb50361772e95f95bf62e76/metrics_licenses.svg\"\u003e](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMeilCli%2Fgradle-update-check-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMeilCli%2Fgradle-update-check-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMeilCli%2Fgradle-update-check-action/lists"}