Skip to content

Commit b0b355d

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

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Clone This Repo
7979
uses: actions/checkout@v3
8080
- name: Run spellings check
81-
uses: FreeRTOS/CI-CD-GitHub-Actions/spellings@v2
81+
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
8282
with:
8383
path: ./
8484

@@ -128,7 +128,7 @@ jobs:
128128
- name: Check Links
129129
env:
130130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
131-
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
131+
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
132132

133133
build-checks:
134134
runs-on: ubuntu-latest
@@ -334,7 +334,7 @@ jobs:
334334
runs-on: cbmc_ubuntu-latest_16-core
335335
steps:
336336
- name: Set up CBMC runner
337-
uses: FreeRTOS/CI-CD-Github-Actions/set_up_cbmc_runner@v2
337+
uses: FreeRTOS/CI-CD-Github-Actions/set_up_cbmc_runner@main
338338
with:
339339
cbmc_version: "5.61.0"
340340

@@ -352,6 +352,6 @@ jobs:
352352
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
353353
354354
- name: Run CBMC
355-
uses: FreeRTOS/CI-CD-Github-Actions/run_cbmc@v2
355+
uses: FreeRTOS/CI-CD-Github-Actions/run_cbmc@main
356356
with:
357357
proofs_dir: test/cbmc/proofs

.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-candidate.yml

Lines changed: 1 addition & 1 deletion
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

.github/workflows/release.yml

Lines changed: 2 additions & 2 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
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install ZIP tools
5454
run: sudo apt-get install zip unzip
5555
- name: Checkout code
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v3
5757
with:
5858
ref: ${{ github.event.inputs.commit_id }}
5959
path: FreeRTOS-Plus-TCP

0 commit comments

Comments
 (0)