Skip to content

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #45

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

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #45

Workflow file for this run

name: Go
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v3
with:
go-version: 1.21
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check version
run: DEBUG=true ./ci/version
- name: Test
run: make test
- name: Build
run: make build
- name: Print theo-agent -version
run: ./build/theo-agent -version
- name: Cross build
env:
CGO_ENABLED: 0
run: |
GOOS=linux GOARCH=amd64 make -e buildx
- name: Upload theo-agent
uses: actions/upload-artifact@v3
with:
name: theo-agent-Linux-x86_64
path: build/theo-agent-Linux-x86_64
test-build:
name: Test artifact on 20.04
needs: build
runs-on: ubuntu-20.04
steps:
- name: Download theo-agent
uses: actions/download-artifact@v3
with:
name: theo-agent-Linux-x86_64
- name: Add execution bit to downloaded file
run: chmod +x ./theo-agent-Linux-x86_64
- name: Print theo-agent -version
run: ./theo-agent-Linux-x86_64 -version