-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This should remove an error where GH constantly reports that we should switch to a later actions/checkout version to ensure we use Node.js20 instead of 16 underneath. Signed-off-by: Johannes Demel <[email protected]>
- Loading branch information
Showing
3 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: gnuradio/[email protected] | ||
with: | ||
source: '.' | ||
exclude: './tmpl,./include/volk/sse2neon.h' | ||
extensions: 'c,cc,cpp,cxx,h,hh' | ||
extensions: 'c,cc,cpp,cxx,h,hh' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
runs-on: ${{ matrix.compiler.distro }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: Install dependencies | ||
|
@@ -110,7 +110,7 @@ jobs: | |
compiler: { name: g++-12, cc: gcc-12, cxx: g++-12 } | ||
|
||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- uses: uraimo/[email protected] | ||
|
@@ -169,7 +169,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: dependencies | ||
|
@@ -194,7 +194,7 @@ jobs: | |
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: dependencies | ||
|
@@ -244,7 +244,7 @@ jobs: | |
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: dependencies | ||
|