Skip to content

Updated buildpacks/github-actions action from v5.11.0 to v5.12.1 #2395

Updated buildpacks/github-actions action from v5.11.0 to v5.12.1

Updated buildpacks/github-actions action from v5.11.0 to v5.12.1 #2395

---
name: Test Pull Request
on:
pull_request:
branches:
- main
jobs:
unit:
name: Unit Tests
runs-on: ubuntu-24.04
steps:
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Checkout
uses: actions/checkout@v6
- name: Check repo structure
run: ./scripts/sanity.sh
- name: Run Unit Tests
run: ./scripts/unit.sh
upload:
name: Upload Workflow Event Payload
runs-on: ubuntu-24.04
steps:
- name: Upload Artifact
uses: actions/upload-artifact@v6
with:
name: event-payload
path: ${{ github.event_path }}