-
-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (39 loc) · 1.17 KB
/
create-renovate-data.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0
- name: Use node 20
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
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