Skip to content

build(deps): bump go.elastic.co/fastjson from 1.5.0 to 1.5.1 (#660) #933

build(deps): bump go.elastic.co/fastjson from 1.5.0 to 1.5.1 (#660)

build(deps): bump go.elastic.co/fastjson from 1.5.0 to 1.5.1 (#660) #933

Workflow file for this run

name: test
on:
pull_request:
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
push:
branches:
- main
paths-ignore:
- "**/*.asciidoc"
- "**/*.md"
- "**/*.png"
permissions:
contents: read
## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:
strategy:
fail-fast: false
matrix:
platform:
- "ubuntu-latest"
- "macos-latest"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Bootstrap Action Workspace
uses: ./.github/actions/bootstrap
- name: Test
run: make test junitfile="${{ matrix.platform }}-junit-report.xml"
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
if: success() || failure()
with:
name: test-results-${{ matrix.platform }}
path: '*-junit-report.xml'
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Bootstrap Action Workspace
uses: ./.github/actions/bootstrap
with:
goreleaser: 'true'
- name: Build
run: make dist
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
if: always()
with:
name: snapshots
path: "dist/*.*"
retention-days: 5
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Bootstrap Action Workspace
uses: ./.github/actions/bootstrap
- run: make lint-prep
- run: make lint
- run: go vet
notice:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Bootstrap Action Workspace
uses: ./.github/actions/bootstrap
- name: notice
run: make check-notice
# The very last job to report whether the Workflow passed.
# This will act as the Branch Protection gatekeeper
ci:
if: always()
needs:
- build
- lint
- notice
- test
runs-on: ubuntu-latest
steps:
- id: check
uses: elastic/oblt-actions/check-dependent-jobs@476391c0e6815110ce488b8b09c80ed61848a28a # v1
with:
jobs: ${{ toJSON(needs) }}
- run: ${{ steps.check.outputs.is-success }}