Skip to content

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #79

Bump golang.org/x/crypto from 0.14.0 to 0.17.0

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #79

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- master
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
#os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- name: Prepare OS
id: podman_install
run: |
sudo apt update -qqy
sudo apt install -qqy podman
systemctl --user start podman
echo "DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock" >> "$GITHUB_ENV"
- name: Prepare Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '1.21'
check_latest: true
- name: Checkout codebase
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Perform lint checks
run: |
go install golang.org/x/lint/golint@v0.0.0-20210508222113-6edffad5e616
make lint
- name: Perform format checks
run: make simplify
- name: Perform vet checks
run: make vet
- name: Run test suite
run: make test
...