Update azure-pipelines-task-lib to avoid security issue in dependency #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI (main) | |
# This workflow is triggered on pushes to main and runs tests and performs the release steps | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build-test-publish: | |
name: "Build, test, publish" | |
if: github.ref == 'refs/heads/main' | |
uses: ./.github/workflows/ci_common.yml | |
with: | |
release: true | |
secrets: | |
AZDO_TOKEN: ${{ secrets.AZDO_TOKEN }} |