Skip to content

Commit 5d149d5

Browse files
Chore: Update CI
1 parent 79a87dd commit 5d149d5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/update-ref.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Update references for commits, tags, etc
22

33
on:
4-
workflow_dispatch:
4+
workflow_dispatch:
55
schedule:
66
- cron: '0 0 1 * *' # Run on the first day of every month
77

@@ -20,29 +20,31 @@ jobs:
2020
BASE_BRANCH: staging
2121
FILE_PATHS: |
2222
integration-tests/src/utils/version.ts
23+
scripts/fetch-poky.sh
2324
scripts/fetch-docs.sh
25+
integration-tests/src/runTest.ts
26+
scripts/fetch-spdx-licenses.sh
2427
node-version: 20
2528

2629
steps:
2730
- name: Checkout Repository
28-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
2932
with:
3033
ref: ${{ env.BASE_BRANCH }}
3134

3235
- name: Update required extension version
3336
run: bash scripts/update-ref.sh
3437

3538
- name: Verify file changes
36-
uses: tj-actions/verify-changed-files@v17
39+
uses: tj-actions/verify-changed-files@v20
3740
id: verify-changed-files
3841
with:
3942
files: ${{ env.FILE_PATHS }}
4043

4144
- name: Create pull request
4245
if: steps.verify-changed-files.outputs.files_changed == 'true'
43-
uses: peter-evans/create-pull-request@v5
46+
uses: peter-evans/create-pull-request@v6
4447
with:
45-
add-paths: ${{ env.FILE_PATHS }}
4648
title: Auto update references for commits, tags, etc
4749
commit-message: Auto update references for commits, tags, etc
4850
branch: update-ref

0 commit comments

Comments
 (0)