Skip to content

Commit

Permalink
Swap to using checkout@v4.1.1 as @V3 uses a soon to be deprecated ver…
Browse files Browse the repository at this point in the history
…sion of nodejs.
  • Loading branch information
Skptak committed Apr 4, 2024
1 parent d435b75 commit 62a6f01
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/executableMonitorTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- env:
stepName: Install Windows Build tools
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- env:
stepName: Install Windows Build tools
name: ${{ env.stepName }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/formattingTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uncrustify-formatting-success-cases:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- env:
stepName: "Functional | Success | Exclude Files and Dirs"
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
uncrustify-formatting-error-cases:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- env:
stepName: "Functional | Failure | Whitespace, CRLF, and Format Failure"
name: ${{ env.stepName }}
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
clang-formatting-success-cases:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- env:
stepName: "Functional | Success | Exclude Files and Dirs"
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
clang-formatting-error-cases:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- env:
stepName: "Functional | Failure | Whitespace, CRLF, and Format Failure"
name: ${{ env.stepName }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
},
]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v3

- name: Install Common Tools
Expand All @@ -198,7 +198,7 @@ jobs:
sudo apt-get install -y lcov sed build-essential cmake
- name: "Clone: ${{ matrix.inputs.repository }}"
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: ${{ matrix.inputs.org }}/${{ matrix.inputs.repository }}
ref: ${{ matrix.inputs.branch }}
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:

- name: "Recursive Clone: ${{ matrix.inputs.repository }}"
if: success() || failure()
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: ${{ matrix.inputs.org }}/${{ matrix.inputs.repository }}
ref: ${{ matrix.inputs.branch }}
Expand Down Expand Up @@ -404,11 +404,11 @@ jobs:
]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v3

- name: "Clone: ${{ matrix.inputs.repository }}"
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: ${{ matrix.inputs.org }}/${{ matrix.inputs.repository }}
ref: ${{ matrix.inputs.branch }}
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
test-format-check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
path: coreMQTT
Expand All @@ -34,8 +34,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
ref: main
Expand All @@ -51,9 +51,9 @@ jobs:
test-doxygen-zip-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: aws/aws-iot-device-sdk-embedded-C
submodules: recursive
Expand All @@ -70,9 +70,9 @@ jobs:
test-doxygen-non-zip-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
ref: main
Expand All @@ -86,8 +86,8 @@ jobs:
test-spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
ref: main
Expand All @@ -101,9 +101,9 @@ jobs:
test-spell-checker-find-mistake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
ref: main
Expand Down Expand Up @@ -140,8 +140,8 @@ jobs:
test-coverage-cop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/coreMQTT
ref: main
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
test-memory-statistics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Test memory statistics action
uses: ./memory_statistics
Expand All @@ -264,7 +264,7 @@ jobs:
test-link-verifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Setup python environment
uses: actions/setup-python@v3
Expand Down Expand Up @@ -319,13 +319,13 @@ jobs:
test-manifest-verifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Setup python environment
uses: actions/setup-python@v3

- name: Checkout the FreeRTOS/FreeRTOS repository for testing action on.
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: FreeRTOS/FreeRTOS
ref: '202107.00'
Expand Down
4 changes: 2 additions & 2 deletions doxygen-generation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
using: "composite"
steps:
- name: Checkout the repo for generating doxygen
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
path: doxygen_source
ref: ${{ inputs.ref }}
Expand All @@ -51,7 +51,7 @@ runs:
run: ${{ inputs.generate_command }}

- name: Checkout the repo for storing doxygen
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
path: doxygen_store

Expand Down
2 changes: 1 addition & 1 deletion formatting-bot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
- name: Checkout upstream repo
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
repository: ${{ steps.pr-info.outputs.RemoteRepo }}
ref: ${{ steps.pr-info.outputs.branchName }}
Expand Down
2 changes: 1 addition & 1 deletion set_up_cbmc_runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
using: composite
steps:
- name: Check out repository and submodules recursively
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
submodules: 'recursive'

Expand Down

0 comments on commit 62a6f01

Please sign in to comment.