Skip to content

Commit be6d6e4

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

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
- uses: actions/checkout@v3
7373
- name: Run doxygen build
74-
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@v2
74+
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@main
7575
with:
7676
path: ./
7777

@@ -81,7 +81,7 @@ jobs:
8181
- name: Clone This Repo
8282
uses: actions/checkout@v3
8383
- name: Run spellings check
84-
uses: FreeRTOS/CI-CD-GitHub-Actions/spellings@v2
84+
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
8585
with:
8686
path: ./
8787

@@ -122,7 +122,7 @@ jobs:
122122
with:
123123
python-version: "3.11.0"
124124
- name: Measure sizes
125-
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@v2
125+
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
126126
with:
127127
config: .github/memory_statistics_config.json
128128
check_against: docs/doxygen/include/size_table.md
@@ -134,7 +134,7 @@ jobs:
134134
- name: Check Links
135135
env:
136136
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
137-
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
137+
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
138138

139139
verify-manifest:
140140
runs-on: ubuntu-latest

.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/memory_statistics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
name: Calculate object sizes
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
with:
1313
submodules: "recursive"
1414
- name: Measure sizes
15-
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@v2
15+
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
1616
with:
1717
config: .github/memory_statistics_config.json
1818
- name: Upload table

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
ref: ${{ github.event.inputs.commit_id }}
2222
- name: Configure git identity
@@ -28,7 +28,7 @@ jobs:
2828
git checkout -b ${{ github.event.inputs.version_number }} ${{
2929
github.event.inputs.commit_id }}
3030
- name: Generate SBOM
31-
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@v2
31+
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@main
3232
with:
3333
repo_path: ./
3434
source_path: ./source
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install ZIP tools
5656
run: sudo apt-get install zip unzip
5757
- name: Checkout code
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v3
5959
with:
6060
ref: ${{ github.event.inputs.commit_id }}
6161
path: FreeRTOS-Cellular-Interface
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-latest
108108
steps:
109109
- name: Doxygen generation
110-
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@v2
110+
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@main
111111
with:
112112
ref: ${{ github.event.inputs.version_number }}
113113
add_release: "true"

0 commit comments

Comments
 (0)