Skip to content

chore(go): bump golang.org/x/crypto from 0.31.0 to 0.32.0 in the golang-x group #358

chore(go): bump golang.org/x/crypto from 0.31.0 to 0.32.0 in the golang-x group

chore(go): bump golang.org/x/crypto from 0.31.0 to 0.32.0 in the golang-x group #358

Workflow file for this run

---
name: "Test"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Run tests
run: make test
- name: Upload coverage to Codecov
if: success()
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.txt
fail_ci_if_error: false