Subversion Repositories tpanel

Rev

Rev 363 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 363 Rev 469
Line 48... Line 48...
48
    - name: Checkout repository
48
    - name: Checkout repository
49
      uses: actions/checkout@v3
49
      uses: actions/checkout@v3
50
 
50
 
51
    # Initializes the CodeQL tools for scanning.
51
    # Initializes the CodeQL tools for scanning.
52
    - name: Initialize CodeQL
52
    - name: Initialize CodeQL
53
      uses: github/codeql-action/init@v2
53
      uses: github/codeql-action/init@v3
54
      with:
54
      with:
55
        languages: ${{ matrix.language }}
55
        languages: ${{ matrix.language }}
56
        # If you wish to specify custom queries, you can do so here or in a config file.
56
        # If you wish to specify custom queries, you can do so here or in a config file.
57
        # By default, queries listed here will override any specified in a config file.
57
        # By default, queries listed here will override any specified in a config file.
58
        # Prefix the list here with "+" to use these queries and those in the config file.
58
        # Prefix the list here with "+" to use these queries and those in the config file.
Line 62... Line 62...
62
 
62
 
63
 
63
 
64
    # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
64
    # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
65
    # If this step fails, then you should remove it and run the build manually (see below)
65
    # If this step fails, then you should remove it and run the build manually (see below)
66
    #- name: Autobuild
66
    #- name: Autobuild
67
    #  uses: github/codeql-action/autobuild@v2
67
    #  uses: github/codeql-action/autobuild@v3
68
 
68
 
69
    # â„šī¸ Command-line programs to run using the OS shell.
69
    # â„šī¸ Command-line programs to run using the OS shell.
70
    # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
70
    # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
71
 
71
 
72
    #   If the Autobuild fails above, remove it and uncomment the following three lines.
72
    #   If the Autobuild fails above, remove it and uncomment the following three lines.
Line 75... Line 75...
75
    - run: |
75
    - run: |
76
        echo "Run, Build Application using script"
76
        echo "Run, Build Application using script"
77
        ./tbuild/compile_build.sh
77
        ./tbuild/compile_build.sh
78
 
78
 
79
    - name: Perform CodeQL Analysis
79
    - name: Perform CodeQL Analysis
80
      uses: github/codeql-action/analyze@v2
80
      uses: github/codeql-action/analyze@v3
81
      with:
81
      with:
82
        category: "/language:${{matrix.language}}"
82
        category: "/language:${{matrix.language}}"