Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefma/upgrade-go-action
A Github Action that checks for Go upgrades and modifies the go.mod file accordingly.
https://github.com/stefma/upgrade-go-action
dependency-updater github-actions go golang
Last synced: 26 days ago
JSON representation
A Github Action that checks for Go upgrades and modifies the go.mod file accordingly.
- Host: GitHub
- URL: https://github.com/stefma/upgrade-go-action
- Owner: StefMa
- License: mit
- Created: 2023-08-31T19:36:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-07T13:12:07.000Z (2 months ago)
- Last Synced: 2024-09-08T08:56:26.037Z (about 2 months ago)
- Topics: dependency-updater, github-actions, go, golang
- Language: JavaScript
- Homepage:
- Size: 384 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Upgrade Go Action
[![MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/StefMa/Upgrade-Go-Action/blob/main/LICENSE)
## What?
A Github Action that checks for Go upgrades and modifies the `go.mod` file accordingly.
## How?
```yml
- uses: StefMa/Upgrade-Go-Action@main
with:
base-branch: 'master' # Defaults to 'main' if absent
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```## Why?
It is like [Dependabot](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates) or the [Gradle Wrapper Upgrade Gradle Plugin](https://github.com/gradle/wrapper-upgrade-gradle-plugin).
You shouldn't really care about the Go version as long as you don't build a Go library.
You can always be on the bleeding edge 🙂So, why not?
## Example
A fully working example can bn seen below.
It make sense to run this Action periodically to check for new Go versions.```yml
name: Upgrade Goon:
workflow_dispatch:
schedule:
- cron: "0 8 * * MON"jobs:
upgrade-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: StefMa/Upgrade-Go-Action@main
with:
base-branch: 'master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```## Action Inputs
Full a full-reference, checkout the [`action.yml`](action.yml) file.
**base-branch**
The (base) branch where the PR will be created against at. Default is main.## Release
1. Checkout the repo (`git clone ...`)
2. Install `npm`
3. Run `npm install`
4. Run `npm run build`
5. Push to the repo## Developer information links
* [Create a JavaScript GitHub Action](https://docs.github.com/en/actions/creating-actions/creating-a-javascript-action)
* [The GitHub Actions Toolkit repository](https://github.com/actions/toolkit)
* [An "example" GitHub Actions implementation](https://github.com/Blackjacx/backlog-notifier)