build(deps): bump github.com/apache/arrow-go/v18 from 18.0.1-0.20241212180703-82be143d7c30 to 18.1.0 #994
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
# Checks if the current updates includes incompatible changes compared with latest release. | |
name: Detect incompatible changes | |
on: | |
pull_request: | |
paths: | |
- 'go.mod' | |
- 'go.sum' | |
- '**.go' | |
branches: | |
- 'main' | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: './grafana-plugin-sdk-go' | |
- uses: actions/setup-go@v5 | |
with: | |
cache: false | |
check-latest: true | |
go-version-file: './grafana-plugin-sdk-go/go.mod' | |
- name: Install gorelease | |
working-directory: './grafana-plugin-sdk-go' | |
run: go install golang.org/x/exp/cmd/gorelease@latest | |
- name: Check for incompatible changes | |
working-directory: './grafana-plugin-sdk-go' | |
run: | | |
gorelease | tee /dev/stderr | grep -vzq 'incompatible changes' |