Skip to content

Bump golang.org/x/net in /examples/plugin-cli/plugins/mains/transit #34

Bump golang.org/x/net in /examples/plugin-cli/plugins/mains/transit

Bump golang.org/x/net in /examples/plugin-cli/plugins/mains/transit #34

Workflow file for this run

name: "make-gen-delta"
on:
- workflow_dispatch
- push
- workflow_call
permissions:
contents: read
jobs:
make-gen-delta:
name: "Check for uncommitted changes from make gen in extras/kms"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: '0'
- name: Determine Go version
id: get-go-version
# We use .go-version as our source of truth for current Go
# version, because "goenv" can react to it automatically.
run: |
echo "Building with Go $(cat .go-version)"
echo "go-version=$(cat .go-version)" >> "$GITHUB_OUTPUT"
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: "${{ steps.get-go-version.outputs.go-version }}"
- name: Running go mod tidy
run: |
cd ./extras/kms
go mod tidy
- name: Install Dependencies
run: |
cd ./extras/kms
make tools
- name: Running make fmt
run: |
cd ./extras/kms
make fmt
- name: Check for changes
run: |
cd ./extras/kms
git diff --exit-code
git status --porcelain
test -z "$(git status --porcelain)"