summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2023-06-28 13:37:20 (GMT)
committerJan Wagner <waja@cyconet.org>2023-06-28 13:57:03 (GMT)
commitfbf0c9d208321cc2f9b9a1f166a8a582e41e53f8 (patch)
tree0e043fb5ce6145512040fbd4cbe78cac52c636fd /.github
parent2275da632c2595cf3ec89d0fadbfacecaf89515d (diff)
downloadmonitoring-plugins-fbf0c9d208321cc2f9b9a1f166a8a582e41e53f8.tar.gz
Fix indentation
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yml54
1 files changed, 27 insertions, 27 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index ab8bfaa..b56ac16 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -38,35 +38,35 @@ jobs:
38 # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 38 # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
39 39
40 steps: 40 steps:
41 - name: Checkout repository 41 - name: Checkout repository
42 uses: actions/checkout@v3 42 uses: actions/checkout@v3
43 43
44 # Initializes the CodeQL tools for scanning. 44 # Initializes the CodeQL tools for scanning.
45 - name: Initialize CodeQL 45 - name: Initialize CodeQL
46 uses: github/codeql-action/init@v2 46 uses: github/codeql-action/init@v2
47 with: 47 with:
48 languages: ${{ matrix.language }} 48 languages: ${{ matrix.language }}
49 # If you wish to specify custom queries, you can do so here or in a config file. 49 # If you wish to specify custom queries, you can do so here or in a config file.
50 # By default, queries listed here will override any specified in a config file. 50 # By default, queries listed here will override any specified in a config file.
51 # Prefix the list here with "+" to use these queries and those in the config file. 51 # Prefix the list here with "+" to use these queries and those in the config file.
52 # queries: ./path/to/local/query, your-org/your-repo/queries@main 52 # queries: ./path/to/local/query, your-org/your-repo/queries@main
53 53
54 - name: Install packages 54 - name: Install packages
55 run: | 55 run: |
56 sudo apt update 56 sudo apt update
57 sudo apt-get install -y --no-install-recommends m4 gettext automake autoconf make build-essential 57 sudo apt-get install -y --no-install-recommends m4 gettext automake autoconf make build-essential
58 sudo apt-get install -y --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev \ 58 sudo apt-get install -y --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev \
59 libmysqlclient-dev libradcli-dev libkrb5-dev libdbi0-dev \ 59 libmysqlclient-dev libradcli-dev libkrb5-dev libdbi0-dev \
60 libdbd-sqlite3 libssl-dev libcurl4-openssl-dev liburiparser-dev 60 libdbd-sqlite3 libssl-dev libcurl4-openssl-dev liburiparser-dev
61 61
62 - name: Configure build 62 - name: Configure build
63 run: | 63 run: |
64 ./tools/setup 64 ./tools/setup
65 ./configure --enable-libtap 65 ./configure --enable-libtap
66 66
67 - name: Build 67 - name: Build
68 run: | 68 run: |
69 make 69 make
70 70
71 - name: Perform CodeQL Analysis 71 - name: Perform CodeQL Analysis
72 uses: github/codeql-action/analyze@v2 72 uses: github/codeql-action/analyze@v2