Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/issue_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
name: Sync Issue Comments to Jira
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5
- name: Sync issue comments to JIRA
uses: espressif/sync-jira-actions@master
uses: espressif/sync-jira-actions@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JIRA_PASS: ${{ secrets.JIRA_PASS }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/new_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
name: Sync issues to Jira
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5
- name: Sync GitHub issues to Jira project
uses: espressif/sync-jira-actions@master
uses: espressif/sync-jira-actions@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JIRA_PASS: ${{ secrets.JIRA_PASS }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/new_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Sync PRs to Jira
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5
- name: Sync PRs to Jira project
uses: espressif/sync-jira-actions@master
uses: espressif/sync-jira-actions@v1
with:
cron_job: true
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
esp32_p4_eye,
]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5

- name: Prepare BSP examples
run: |
Expand All @@ -56,7 +56,7 @@ jobs:
upload_other_components:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5
- name: Upload Other components
uses: espressif/upload-components-ci-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_component_noglib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
upload_components:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v5

- name: Upload noglib version of BSPs
# TODO: Extend this part to all BSPs
Expand Down
Loading