Skip to content

Bump golang.org/x/crypto from 0.33.0 to 0.35.0 #7

Bump golang.org/x/crypto from 0.33.0 to 0.35.0

Bump golang.org/x/crypto from 0.33.0 to 0.35.0 #7

Workflow file for this run

name: Go Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Build project
run: go build -v cmd/main.go