Skip to content

build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0 #864

build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0

build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0 #864

Workflow file for this run

name: Lint -> Test
on:
push:
branches: [main]
pull_request:
# Since no branch is specified, this will run on all PRs
# Repository dispatches are triggered throughout the GitHub API. This is used to run the custom integration tests using a specified API host
# in the custom integration test job below
repository_dispatch:
types: [run_integration_tests]
workflow_dispatch:
jobs:
lint-test:
name: Lints and Tests
runs-on: macos-latest
permissions:
contents: read
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: "1.25.3"
- name: Lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: latest
args: --timeout=5m
- name: Unit Tests
run: make test
- name: Install Tests
run: make test-install
- name: Upload coverage to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out
fail_ci_if_error: false
# Monitor code coverage and TODO/FIXME-type comments
health-score:
name: Health Score
needs: lint-test
runs-on: macos-latest
permissions:
checks: write
contents: read
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: "1.25.3"
- name: Report health score
uses: slackapi/slack-health-score@d58a419f15cdaff97e9aa7f09f95772830ab66f7 # v0.1.1
with:
extension: "go"
codecov_token: ${{ secrets.ELAINES_CODECOV_API_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
include: "cmd internal"