Skip to content

Commit abaff8c

Browse files
committed
workflow updates
1 parent 9731e55 commit abaff8c

3 files changed

Lines changed: 2 additions & 19 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
31
# Please see the documentation for all configuration options:
42
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
53

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
# For most projects, this workflow file will not need changing; you simply need
2-
# to commit it to your repository.
3-
#
4-
# You may wish to alter this file to override the set of languages analyzed,
5-
# or to provide custom queries or build logic.
6-
#
71
name: "CodeQL"
82

93
on:
104
push:
11-
branches: [ master ]
5+
branches: [ main ]
126
pull_request:
137
# The branches below must be a subset of the branches above
14-
branches: [ master ]
8+
branches: [ main ]
159
schedule:
1610
- cron: '1 3 * * */2'
1711

@@ -24,8 +18,6 @@ jobs:
2418
fail-fast: false
2519
matrix:
2620
language: [ 'python' ]
27-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
28-
# Learn more:
2921
# 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
3022

3123
steps:
@@ -37,18 +29,12 @@ jobs:
3729
uses: github/codeql-action/init@v1
3830
with:
3931
languages: ${{ matrix.language }}
40-
# If you wish to specify custom queries, you can do so here or in a config file.
41-
# By default, queries listed here will override any specified in a config file.
42-
# Prefix the list here with "+" to use these queries and those in the config file.
43-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
4432

4533
- run: |
4634
python -m pip install --upgrade pip
4735
if [ -f requirements.txt ];
4836
then pip install -r requirements.txt;
4937
fi
50-
# Set the `CODEQL-PYTHON` environment variable to the Python executable
51-
# that includes the dependencies
5238
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
5339
5440
- name: Perform CodeQL Analysis

.github/workflows/python-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# This workflow will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3-
43
name: Upload Python Package
54

65
on:

0 commit comments

Comments
 (0)