Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 0.13.0 to 1.5.2 #92

Bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 0.13.0 to 1.5.2

Bump github.com/Azure/azure-sdk-for-go/sdk/azidentity from 0.13.0 to 1.5.2 #92

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/.cache/golangci-lint
~/go/pkg/mod
key: ${{ runner.os }}-golangci-lint-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golangci-lint-
- name: Set up Go
uses: actions/setup-go@v5
- name: Download modules
run: go get -v -t ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51
skip-pkg-cache: true
skip-build-cache: true