Remove dependabot PRs and codeql workflow (#2542)

This commit is contained in:
Dima 2024-06-20 21:56:17 +07:00 коммит произвёл GitHub
Родитель 71a93b3eb6
Коммит 5ed6391e34
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 0 добавлений и 64 удалений

16
.github/dependabot.yml поставляемый
Просмотреть файл

@ -1,16 +0,0 @@
version: 2
updates:
# Enable version updates for npm on the main appcenter-cli package
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
# Check the npm registry for updates every weekday
schedule:
interval: "weekly"
open-pull-requests-limit: 20
# Enable version updates for npm on the inner appcenter-file-upload-client-node package
- package-ecosystem: "npm"
directory: "/appcenter-file-upload-client-node"
schedule:
interval: "weekly"
open-pull-requests-limit: 20

48
.github/workflows/codeql-analysis.yml поставляемый
Просмотреть файл

@ -1,48 +0,0 @@
name: "Code Scanning - Action"
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 0'
jobs:
CodeQL-Build:
strategy:
fail-fast: false
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2