Skip to content

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 #377

build(deps): bump actions/checkout from 4.2.1 to 4.2.2

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 #377

Workflow file for this run

name: Run apidiff
on: [ pull_request ]
permissions:
contents: read
jobs:
apidiff:
runs-on: ubuntu-latest
if: github.base_ref
steps:
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: 1.23.x
- name: Add GOBIN to PATH
run: echo "PATH=$(go env GOPATH)/bin:$PATH" >>$GITHUB_ENV
- name: Install dependencies
run: go install golang.org/x/exp/cmd/apidiff@latest
- name: Checkout old code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ github.base_ref }}
path: "old"
- name: Checkout new code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: "new"
- name: APIDiff
run: ./_tools/apidiff.sh -d ../old
working-directory: "new"