Skip to content

build(deps): bump github.com/apache/arrow-go/v18 from 18.2.0 to 18.3.0 #1189

build(deps): bump github.com/apache/arrow-go/v18 from 18.2.0 to 18.3.0

build(deps): bump github.com/apache/arrow-go/v18 from 18.2.0 to 18.3.0 #1189

# 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
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
path: './grafana-plugin-sdk-go'
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 5.3.0
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'