Skip to content

Commit

Permalink
Updated actions/checkout to v4 due to Node.js 16 actions being deprec…
Browse files Browse the repository at this point in the history
…ated.
  • Loading branch information
feaser committed Feb 4, 2024
1 parent 3c241cd commit 3185f96
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/misra_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
- name: Install dependencies
run: sudo apt-get install cppcheck
- name: Checkout tests repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: feaser/microtbx-tests
submodules: true
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'third_party/microtbx'
- name: Generate build environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout tests repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: feaser/microtbx-tests
submodules: true
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'third_party/microtbx'
- name: Generate build environment
Expand Down

0 comments on commit 3185f96

Please sign in to comment.