Create Renovate Data #648
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: Create Renovate Data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "5 4 * * *" | |
permissions: | |
contents: read | |
jobs: | |
update: | |
permissions: | |
contents: write | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Use node 20 | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- name: Download recent extensions | |
run: | | |
.\01-update-extension-cache.ps1 | |
env: | |
AZURE_DEVOPS_PAT: ${{ secrets.AZURE_DEVOPS_PAT }} | |
shell: pwsh | |
- name: Generate azure-pipelines-marketplace-tasks.json | |
run: | | |
.\02-generate-renovate-data-marketplace.ps1 | |
shell: pwsh | |
- name: Generate azure-pipelines-builtin-tasks.json | |
run: | | |
.\03-generate-renovate-data-builtin.ps1 | |
env: | |
AZURE_DEVOPS_PAT: ${{ secrets.AZURE_DEVOPS_PAT }} | |
AZURE_DEVOPS_ORG: ${{ vars.AZURE_DEVOPS_ORG }} | |
shell: pwsh |