Skip to content

Commit

Permalink
Bump actions [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Feb 8, 2024
1 parent b81afc3 commit afb276c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Build with CMake"
name: "CMake build"

on:
push:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
os: windows-latest
compiler: mingw
steps:
- name: Checkout Code
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 5
Expand All @@ -65,7 +65,7 @@ jobs:
else
cmake -S . -B build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DMATIO_USE_CONAN=ON -DMATIO_SHARED=OFF
fi
- name: Build libraries with ${{ matrix.compiler }}
- name: Build with ${{ matrix.compiler }}
run: |
if [ "${{ matrix.compiler }}" == "msvc" ]; then
cmake --build build --config ${{ matrix.configuration }}
Expand Down
55 changes: 27 additions & 28 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,36 +19,35 @@ jobs:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'cpp' ]

steps:
- name: Checkout repository
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

- name: Build matio
run: |
./autogen.sh
./configure --disable-tests --with-zlib --enable-mat73=yes --with-hdf5
make
sudo make install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 5
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Configure
run: |
./autogen.sh
./configure --disable-tests --with-zlib --enable-mat73=yes --with-hdf5
- name: Build
run: |
make
sudo make install
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
1 change: 1 addition & 0 deletions .github/workflows/covsync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sync coverity_scan branch
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down

0 comments on commit afb276c

Please sign in to comment.