Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spinnaker/bumpdeps
A GitHub Action to automatically bump Spinnaker dependencies
https://github.com/spinnaker/bumpdeps
Last synced: about 1 month ago
JSON representation
A GitHub Action to automatically bump Spinnaker dependencies
- Host: GitHub
- URL: https://github.com/spinnaker/bumpdeps
- Owner: spinnaker
- License: apache-2.0
- Created: 2020-04-06T18:17:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T01:32:20.000Z (over 1 year ago)
- Last Synced: 2024-04-13T03:16:06.174Z (8 months ago)
- Language: Kotlin
- Homepage:
- Size: 151 KB
- Stars: 4
- Watchers: 18
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bumpdeps
Bumpdeps is a github action to automatically modify the version dependencies in a Spinnaker repo's
`gradle.properties` files. It requires the following inputs:* **ref**: The git ref that triggered this workflow run. This should almost always be `${{ github.ref }}`
* **key**: The key in the `gradle.properties` file that will be modified (e.g. `korkVersion`)
* **repositories**: The list of repositories to modify (i.e. the ones that depend on this repository)An example workflow looks something like this:
```yaml
name: Releaseon:
push:
tags:
- "v.+"jobs:
bump-dependencies:
runs-on: ubuntu-latest
steps:
- uses: spinnaker/bumpdeps@master
with:
ref: ${{ github.ref }}
key: korkVersion
repositories: fiat,echo
env:
GITHUB_OAUTH: ${{ secrets.REPO_OAUTH_TOKEN }}
```