Skip to content

Commit

Permalink
Update GitHub Actions to use Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSomeMan committed Feb 1, 2024
1 parent 7b12c77 commit e44aac2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Check out code
uses: actions/checkout@v3 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
uses: actions/checkout@v4 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

- name: Install Clang-Format 14
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/google-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
submodules: true
Expand All @@ -22,7 +22,7 @@ jobs:
run: git submodule update --init --recursive

- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand All @@ -49,7 +49,7 @@ jobs:

- name: Cache ESP-IDF and tools
id: cache-esp-idf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/esp
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
submodules: true
Expand All @@ -26,7 +26,7 @@ jobs:
run: git submodule update --init --recursive

- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Cache ESP-IDF and tools
id: cache-esp-idf
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/esp
Expand Down

0 comments on commit e44aac2

Please sign in to comment.