Skip to content

Bump golang.org/x/crypto from 0.42.0 to 0.45.0 #7733

Bump golang.org/x/crypto from 0.42.0 to 0.45.0

Bump golang.org/x/crypto from 0.42.0 to 0.45.0 #7733

Workflow file for this run

name: JFrog CLI Core Tests
on:
workflow_dispatch:
push:
branches:
- master
tags-ignore:
- "**"
pull_request_target:
branches:
- master
types: [labeled]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
env:
GOPROXY: direct
GRADLE_OPTS: -Dorg.gradle.daemon=false
JFROG_CLI_LOG_LEVEL: "DEBUG"
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Setup Python3
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install pipenv & poetry
run: python -m pip install pipenv poetry
- name: Install NuGet
uses: nuget/setup-nuget@v2
with:
nuget-version: 6.x
- name: Install dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: "6.x"
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
# Install Mono on Ubuntu to run nuget.exe (due to this issue on Ubuntu 24 that hasn't been fixed yet - https://github.com/NuGet/setup-nuget/issues/168)
- name: Install Mono on Ubuntu
if: matrix.os == 'ubuntu'
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https dirmngr gnupg ca-certificates
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main
- name: Tests
run: go test -v github.com/jfrog/jfrog-cli-core/v2/tests -timeout 0 -race