Skip to content

chore(deps): bump golang.org/x/crypto from 0.41.0 to 0.42.0 #1175

chore(deps): bump golang.org/x/crypto from 0.41.0 to 0.42.0

chore(deps): bump golang.org/x/crypto from 0.41.0 to 0.42.0 #1175

Workflow file for this run

name: Test
on:
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
permissions:
contents: read
jobs:
unit-tests:
name: Run unit-tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout head
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- name: Install keyring test dependencies on Ubuntu
run: |
sudo apt-get update
sudo apt-get install -y gnome-keyring build-essential ca-certificates
if: matrix.os == 'ubuntu-latest'
- name: Run tests on Ubuntu with keyring
run: |
echo 'somecredstorepass' | gnome-keyring-daemon --unlock
make test
shell: dbus-run-session -- bash --noprofile --norc -eo pipefail {0}
if: matrix.os == 'ubuntu-latest'
- name: Run tests
run: make test
if: matrix.os != 'ubuntu-latest'
- name: Test build
run: make build
- name: Test Runtime
run: go run cmd/upctl/main.go -h