🤖 Update dependency go to v1.23.3 #471
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: verify | |
on: | |
pull_request: | |
push: | |
tags: | |
- "v*" | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
# update-codegen requires the workspace to be placed in GOPATH. | |
# Set up env var, working directory, and check out at the correct path in GOPATH. | |
env: | |
GOPATH: /home/runner/work/gardener-extension-shoot-flux/gardener-extension-shoot-flux/go | |
defaults: | |
run: | |
working-directory: go/src/github.com/stackitcloud/gardener-extension-shoot-flux | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: go/src/github.com/stackitcloud/gardener-extension-shoot-flux | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go/src/github.com/stackitcloud/gardener-extension-shoot-flux/go.mod | |
cache-dependency-path: go/src/github.com/stackitcloud/gardener-extension-shoot-flux/go.sum | |
- name: Configure git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "ci" | |
- run: make init | |
- run: make verify-extended |