Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Merge pull request #172 from gofiber/deprecation-notice #77

Merge pull request #172 from gofiber/deprecation-notice

Merge pull request #172 from gofiber/deprecation-notice #77

Workflow file for this run

name: Tidy
on:
push:
branches:
- 'master'
paths:
- '.github/workflows/gotidy.yml'
- 'go.mod'
- 'go.sum'
jobs:
fix:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3.5.2
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.17
-
name: Tidy
run: |
rm -f go.sum
go clean -modcache
go mod tidy
-
name: Set up Git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name GitHub
git config user.email noreply@github.com
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
-
name: Commit and push changes
run: |
git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
git commit --author "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" --message "Fix go modules"
git push
fi