Skip to content

Bump actions/upload-artifact from 4.2.0 to 4.3.0 #103

Bump actions/upload-artifact from 4.2.0 to 4.3.0

Bump actions/upload-artifact from 4.2.0 to 4.3.0 #103

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
permissions: read-all
jobs:
analyze-simplecom:
runs-on: windows-2022
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp', 'csharp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
# 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.
# 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
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3
- if: matrix.language == 'cpp'
name: Build CPP
run: |
msbuild SimpleCom\SimpleCom.vcxproj -property:"Configuration=Debug;Platform=x64"
- if: matrix.language == 'csharp'
name: Build CSharp
run: |
msbuild InstallerCustomActions\InstallerCustomActions.csproj -property:Configuration=Debug
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
#
# analyze-tty-resizer should be activated when Linux GH runner has v6.0 kernel or later.
# https://github.com/torvalds/linux/commit/fcb14cb1bdacec5b4374fe161e83fb8208164a85
#
# analyze-tty-resizer:
# runs-on: ubuntu-latest
# permissions:
# actions: read
# contents: read
# security-events: write
#
# strategy:
# fail-fast: false
#
# steps:
# - name: Setup
# run: |
# sudo apt-get update
# sudo apt-get install -y libbpf-dev linux-tools-common
#
# - name: Checkout repository
# uses: actions/checkout@v4.1.1
#
# # Initializes the CodeQL tools for scanning.
# - name: Initialize CodeQL
# uses: github/codeql-action/init@v3
# with:
# languages: cpp
# queries: security-extended,security-and-quality
#
# - name: Build TTY Resizer
# run: make -C tty-resizer
#
# - name: Perform CodeQL Analysis
# uses: github/codeql-action/analyze@v3