Skip to content

Commit

Permalink
updated to v4 in .github/workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonWong14 committed Mar 7, 2024
1 parent 12f3978 commit 9de1d98
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pull_request_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# First, we check out the repository's code using the Github Actions' "Checkout" tool.
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'

Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
sudo chown root:root /usr/bin/tar && sudo chmod u+s /usr/bin/tar
- name: Cache protobuf-c
id: cache-protobuf-c
uses: actions/cache@v3 # Uses the Github Actions' "Cache" tool
uses: actions/cache@v4 # Uses the Github Actions' "Cache" tool
with:
# These are the files we cache
path: |
Expand Down Expand Up @@ -90,6 +90,10 @@ jobs:
cd protobuf-c-1.4.1 && ./configure && make && sudo make install && sudo ldconfig
# Before we build Runtime, we check the formatting
- name: Debug
run: |
ls
pwd
- name: Format
run: |
./runtime format check
Expand Down

0 comments on commit 9de1d98

Please sign in to comment.