Skip to content

Commit 8882791

Browse files
committed
Update to use merged mainline actions, use checkout@v3 instead of checkout@v2 on all jobs
1 parent fc3c003 commit 8882791

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
- uses: actions/checkout@v3
7878
- name: Run doxygen build
79-
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@v2
79+
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@main
8080
with:
8181
path: ./
8282

@@ -86,7 +86,7 @@ jobs:
8686
- name: Clone This Repo
8787
uses: actions/checkout@v3
8888
- name: Run spellings check
89-
uses: FreeRTOS/CI-CD-GitHub-Actions/spellings@v2
89+
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
9090
with:
9191
path: ./
9292

@@ -153,7 +153,7 @@ jobs:
153153
with:
154154
python-version: '3.11.0'
155155
- name: Measure sizes
156-
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@v2
156+
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
157157
with:
158158
config: .github/memory_statistics_config.json
159159
check_against: docs/doxygen/include/size_table.md
@@ -165,7 +165,7 @@ jobs:
165165
- name: Check Links
166166
env:
167167
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
168-
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
168+
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
169169
with:
170170
path: ./
171171

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
runs-on: ubuntu-20.04
2020
steps:
2121
- name: Apply Formatting Fix
22-
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@v2
22+
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main
2323
id: check-formatting

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
- name: Check if tag exists
2727
run: |
2828
git fetch origin
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Checkout code
52-
uses: actions/checkout@v2
52+
uses: actions/checkout@v3
5353
with:
5454
ref: ${{ github.event.inputs.commit_id }}
5555
- name: Configure git identity
@@ -87,7 +87,7 @@ jobs:
8787
- name: Install ZIP tools
8888
run: sudo apt-get install zip unzip
8989
- name: Checkout code
90-
uses: actions/checkout@v2
90+
uses: actions/checkout@v3
9191
with:
9292
ref: ${{ github.event.inputs.commit_id }}
9393
path: coreMQTT

0 commit comments

Comments
 (0)