Skip to content

Commit 739263b

Browse files
committed
Update to use merged mainline actions, use checkout@v3 instead of checkout@v2 on all jobs
1 parent 3b1ca12 commit 739263b

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
@@ -108,7 +108,7 @@ jobs:
108108
- name: Clone This Repo
109109
uses: actions/checkout@v3
110110
- name: Run spellings check
111-
uses: FreeRTOS/CI-CD-GitHub-Actions/spellings@v2
111+
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
112112
with:
113113
path: ./
114114

@@ -146,7 +146,7 @@ jobs:
146146
- name: Check Links
147147
env:
148148
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
149-
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
149+
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
150150

151151
verify-manifest:
152152
runs-on: ubuntu-latest
@@ -167,7 +167,7 @@ jobs:
167167
steps:
168168
- uses: actions/checkout@v3
169169
- name: Run doxygen build
170-
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@v2
170+
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@main
171171
with:
172172
path: ./
173173
memory_statistics:
@@ -179,7 +179,7 @@ jobs:
179179
with:
180180
python-version: "3.7.x"
181181
- name: Measure sizes
182-
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@v2
182+
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
183183
with:
184184
config: .github/memory_statistics_config.json
185185
check_against: docs/doxygen/include/size_table.md

.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: coreSNTP

0 commit comments

Comments
 (0)