Skip to content

Bump golang.org/x/crypto from 0.24.0 to 0.27.0 #56

Bump golang.org/x/crypto from 0.24.0 to 0.27.0

Bump golang.org/x/crypto from 0.24.0 to 0.27.0 #56

Workflow file for this run

name: build
on:
push:
branches:
- main
- release-*
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: install libsodium (for compat tests)
run: sudo apt install libsodium-dev
- name: Install Ziti CI
uses: openziti/ziti-ci@v1
- name: Build and Test
run: go test --tags=compat_test ./...
- name: Release
env:
gh_ci_key: ${{ secrets.GH_CI_KEY }}
ziti_ci_gpg_key: ${{ secrets.ZITI_CI_GPG_KEY }}
ziti_ci_gpg_key_id: ${{ secrets.ZITI_CI_GPG_KEY_ID }}
if: github.ref_name == 'main' || startsWith(github.ref_name, 'release-')
run: |
$(go env GOPATH)/bin/ziti-ci configure-git
$(go env GOPATH)/bin/ziti-ci tag -v -f version
$(go env GOPATH)/bin/ziti-ci trigger-github-build openziti/sdk-golang update-dependency --token ${{ secrets.ZITI_CI_GH_TOKEN }}