Skip to content

Commit

Permalink
DOCS: Add dep updates steps to rel-eng (#3265)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlimoncelli authored Dec 19, 2024
1 parent a341022 commit 35ac9a9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion documentation/release-engineering.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,19 @@ GitHub Actions (GHA) will do most of the work for you. You will need to edit the
Please change the version number as appropriate. Substitute (for example)
`v4.2.0` any place you see `$VERSION` in this doc.

## Step 0. Update dependencies

```shell
git checkout -b update_deps
go install github.com/oligot/go-mod-upgrade@latest
go-mod-upgrade
go mod tidy
git commit -a -m "CHORE: Update dependencies"
```

## Step 1. Rebuild generated files

```shell
export VERSION=v4.x.0
git checkout main
git pull
go fmt ./...
Expand Down

0 comments on commit 35ac9a9

Please sign in to comment.