build(deps): bump com.google.guava:guava from 30.1.1-jre to 32.0.0-jre in /java #1432
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Assign Milestone | |
on: | |
pull_request_target: | |
types: [opened] | |
permissions: read-all | |
env: | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
build: | |
name: Assign Milestone | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.5 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Assign Milestone | |
run: | | |
gh pr edit ${{ github.event.number }} --milestone "v$(sed -n 's/.*versionName.*\"\([[:digit:]\.]*\).*\"/\1/p' ./go/vt/servenv/version.go)" |