diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9b90583..e24428a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + 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. @@ -50,7 +50,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -64,4 +64,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v3 diff --git a/logstash/tests/package-lock.json b/logstash/tests/package-lock.json index 512299f..4f976bc 100644 --- a/logstash/tests/package-lock.json +++ b/logstash/tests/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "ISC", "dependencies": { - "axios": "^1.7.7", + "axios": "^1.7.8", "ws": "^8.18.0" }, "devDependencies": { @@ -1247,9 +1247,9 @@ "license": "MIT" }, "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.8.tgz", + "integrity": "sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==", "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", diff --git a/logstash/tests/package.json b/logstash/tests/package.json index e1b3915..b7502c6 100644 --- a/logstash/tests/package.json +++ b/logstash/tests/package.json @@ -18,7 +18,7 @@ "typescript": "^4.6.2" }, "dependencies": { - "axios": "^1.7.7", + "axios": "^1.7.8", "ws": "^8.18.0" } } diff --git a/pipeline-ui/backend/src/index.ts b/pipeline-ui/backend/src/index.ts index 6f3b216..25df060 100644 --- a/pipeline-ui/backend/src/index.ts +++ b/pipeline-ui/backend/src/index.ts @@ -25,7 +25,7 @@ app.use(httpLogger); // Render the default page when browsing the root app.get('/', function(req, res) { - res.sendfile('index.html', {root: __dirname + '/public/index.html'} ); + res.sendFile('index.html', {root: __dirname + '/public/index.html'} ); }); app.ws('/api/v1/getLogstashOutput', (ws, req) => {});