Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions fix #172

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: C/C++ CI

on:
push:
branches: [ master clang_format_commit ]
branches: [ master github_actions_fix ]
pull_request:
branches: [ master ]
schedule:
Expand Down Expand Up @@ -79,9 +79,9 @@ jobs:
- name: Code checkout
uses: actions/checkout@v2
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
uses: KyleMayes/install-llvm-action@v1.6.1
with:
version: "11.0"
version: "14.0"
directory: ${{ runner.temp }}/llvm
- name: Check cache for Embedded Arm Toolchain arm-none-eabi-gcc
id: cache-toolchain
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v28.0.0
uses: tj-actions/changed-files@v34.5.3
with:
files_ignore: |
**/*.yml
Expand Down