Skip to content

Commit 7245bf2

Browse files
authored
Merge pull request #674 from espressif/petr/fix/sync_jira_actions_fix
fix(ci): Fix jira issue sync and set checkout action to a specific ve…
2 parents 2651c19 + a30f6b6 commit 7245bf2

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/issue_comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
name: Sync Issue Comments to Jira
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@master
11+
- uses: actions/checkout@v5
1212
- name: Sync issue comments to JIRA
13-
uses: espressif/sync-jira-actions@master
13+
uses: espressif/sync-jira-actions@v1
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
JIRA_PASS: ${{ secrets.JIRA_PASS }}

.github/workflows/new_issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
name: Sync issues to Jira
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@master
11+
- uses: actions/checkout@v5
1212
- name: Sync GitHub issues to Jira project
13-
uses: espressif/sync-jira-actions@master
13+
uses: espressif/sync-jira-actions@v1
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
JIRA_PASS: ${{ secrets.JIRA_PASS }}

.github/workflows/new_prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: Sync PRs to Jira
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@master
14+
- uses: actions/checkout@v5
1515
- name: Sync PRs to Jira project
16-
uses: espressif/sync-jira-actions@master
16+
uses: espressif/sync-jira-actions@v1
1717
with:
1818
cron_job: true
1919
env:

.github/workflows/upload_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
esp32_p4_eye,
3838
]
3939
steps:
40-
- uses: actions/checkout@master
40+
- uses: actions/checkout@v5
4141

4242
- name: Prepare BSP examples
4343
run: |
@@ -56,7 +56,7 @@ jobs:
5656
upload_other_components:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@master
59+
- uses: actions/checkout@v5
6060
- name: Upload Other components
6161
uses: espressif/upload-components-ci-action@v2
6262
with:

.github/workflows/upload_component_noglib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
upload_components:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@master
14+
- uses: actions/checkout@v5
1515

1616
- name: Upload noglib version of BSPs
1717
# TODO: Extend this part to all BSPs

0 commit comments

Comments
 (0)