Skip to content

build(deps): bump golang.org/x/crypto from 0.24.0 to 0.31.0 #539

build(deps): bump golang.org/x/crypto from 0.24.0 to 0.31.0

build(deps): bump golang.org/x/crypto from 0.24.0 to 0.31.0 #539

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
strategy:
matrix:
go-version: ["1.21", "1.22", "stable"]
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup dependencies
uses: ./.github/actions/setup-deps
with:
go-version: ${{ matrix.go-version }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run tests
run: task 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
summary:
name: Test
runs-on: ubuntu-latest
needs: [test]
timeout-minutes: 1
steps:
- name: Dummy task
run: echo 'Dummy summary task to have one PR status for all tested versions'