chore(deps): update actions/checkout action to v6 #391
This file contains hidden or 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 | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| paths-ignore: ["*.md"] | |
| push: | |
| branches: | |
| - "renovate/**" | |
| # Prevent duplicate runs if Renovate falls back to creating a PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| # We are using OpenID Connect to authenticate with Azure with secret. | |
| # https://docs.github.com/en/actions/security-for-github-actions/security-hardening-your-deployments/configuring-openid-connect-in-azure | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: [idp] | |
| environment: ci | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Authenticate to Azure Artifacts | |
| uses: workleap/wl-reusable-workflows/az-artifact-authenticate@main | |
| with: | |
| feed-url: ${{ vars.GSOFTDEV_NUGET_SOURCE }} | |
| variables: ${{ toJSON(vars) }} | |
| - run: ./Build.ps1 | |
| shell: pwsh | |
| env: | |
| NUGET_SOURCE: ${{ vars.GSOFTDEV_NUGET_SOURCE }} | |
| linearb: | |
| needs: [ci] | |
| uses: workleap/wl-reusable-workflows/.github/workflows/linearb-deployment.yml@main | |
| with: | |
| environment: development | |
| permissions: | |
| id-token: write | |
| contents: read |