Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

chore(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 (#409) #3155

chore(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 (#409)

chore(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 (#409) #3155

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
# ignore push events with tag
on:
pull_request:
push:
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: coverage
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out