Delete ll.github
Browse files- ll.github/FUNDING.yml +0 -1
- ll.github/ISSUE_TEMPLATE/bug_report.md +0 -31
- ll.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- ll.github/workflows/bandit.yml +0 -52
- ll.github/workflows/codeql.yml +0 -78
- ll.github/workflows/docker-image.yml +0 -18
- ll.github/workflows/docker-publish.yml +0 -97
- ll.github/workflows/pylint.yml +0 -23
- ll.github/workflows/pyre.yml +0 -46
ll.github/FUNDING.yml
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
custom: https://www.buymeacoffee.com/kalanakt
|
|
|
|
ll.github/ISSUE_TEMPLATE/bug_report.md
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
---
|
2 |
-
name: Bug report
|
3 |
-
about: Create a report to help us improve All-Url-Uploader
|
4 |
-
title: "[ bug reports ]"
|
5 |
-
labels: bug, help wanted, question
|
6 |
-
assignees: kalanakt
|
7 |
-
|
8 |
-
---
|
9 |
-
|
10 |
-
Checklist
|
11 |
-
|
12 |
-
- [ ] I added a descriptive title
|
13 |
-
- [ ] I searched for other issues and couldn't find a solution or duplication
|
14 |
-
- [ ] I already searched in Google and didn't find any good information or help
|
15 |
-
|
16 |
-
**Describe the bug**
|
17 |
-
A clear and concise description of what the bug is.
|
18 |
-
|
19 |
-
**Expected behavior**
|
20 |
-
A clear and concise description of what you expected to happen.
|
21 |
-
|
22 |
-
**Screenshots**
|
23 |
-
If applicable, add screenshots to help explain your problem.
|
24 |
-
|
25 |
-
**Desktop (please complete the following information):**
|
26 |
-
- OS: [e.g. iOS]
|
27 |
-
- Deploy In [e.g. locally, heroku, digital ocean]
|
28 |
-
- Version [e.g. v.2.0.0]
|
29 |
-
|
30 |
-
**Additional context**
|
31 |
-
Add any other context about the problem here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/ISSUE_TEMPLATE/feature_request.md
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
---
|
2 |
-
name: Feature request
|
3 |
-
about: Suggest an idea for this project
|
4 |
-
title: "[ Feature request ]"
|
5 |
-
labels: enhancement, question
|
6 |
-
assignees: kalanakt
|
7 |
-
|
8 |
-
---
|
9 |
-
|
10 |
-
**Is your feature request related to a problem? Please describe.**
|
11 |
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12 |
-
|
13 |
-
**Describe the solution you'd like**
|
14 |
-
A clear and concise description of what you want to happen.
|
15 |
-
|
16 |
-
**Describe alternatives you've considered**
|
17 |
-
A clear and concise description of any alternative solutions or features you've considered.
|
18 |
-
|
19 |
-
**Additional context**
|
20 |
-
Add any other context or screenshots about the feature request here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/bandit.yml
DELETED
@@ -1,52 +0,0 @@
|
|
1 |
-
# This workflow uses actions that are not certified by GitHub.
|
2 |
-
# They are provided by a third-party and are governed by
|
3 |
-
# separate terms of service, privacy policy, and support
|
4 |
-
# documentation.
|
5 |
-
|
6 |
-
# Bandit is a security linter designed to find common security issues in Python code.
|
7 |
-
# This action will run Bandit on your codebase.
|
8 |
-
# The results of the scan will be found under the Security tab of your repository.
|
9 |
-
|
10 |
-
# https://github.com/marketplace/actions/bandit-scan is ISC licensed, by abirismyname
|
11 |
-
# https://pypi.org/project/bandit/ is Apache v2.0 licensed, by PyCQA
|
12 |
-
|
13 |
-
name: Bandit
|
14 |
-
on:
|
15 |
-
push:
|
16 |
-
branches: [ "main" ]
|
17 |
-
pull_request:
|
18 |
-
# The branches below must be a subset of the branches above
|
19 |
-
branches: [ "main" ]
|
20 |
-
schedule:
|
21 |
-
- cron: '17 5 * * 3'
|
22 |
-
|
23 |
-
jobs:
|
24 |
-
bandit:
|
25 |
-
permissions:
|
26 |
-
contents: read # for actions/checkout to fetch code
|
27 |
-
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
|
28 |
-
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
|
29 |
-
|
30 |
-
runs-on: ubuntu-latest
|
31 |
-
steps:
|
32 |
-
- uses: actions/checkout@v2
|
33 |
-
- name: Bandit Scan
|
34 |
-
uses: shundor/python-bandit-scan@9cc5aa4a006482b8a7f91134412df6772dbda22c
|
35 |
-
with: # optional arguments
|
36 |
-
# exit with 0, even with results found
|
37 |
-
exit_zero: true # optional, default is DEFAULT
|
38 |
-
# Github token of the repository (automatically created by Github)
|
39 |
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information.
|
40 |
-
# File or directory to run bandit on
|
41 |
-
# path: # optional, default is .
|
42 |
-
# Report only issues of a given severity level or higher. Can be LOW, MEDIUM or HIGH. Default is UNDEFINED (everything)
|
43 |
-
# level: # optional, default is UNDEFINED
|
44 |
-
# Report only issues of a given confidence level or higher. Can be LOW, MEDIUM or HIGH. Default is UNDEFINED (everything)
|
45 |
-
# confidence: # optional, default is UNDEFINED
|
46 |
-
# comma-separated list of paths (glob patterns supported) to exclude from scan (note that these are in addition to the excluded paths provided in the config file) (default: .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg)
|
47 |
-
# excluded_paths: # optional, default is DEFAULT
|
48 |
-
# comma-separated list of test IDs to skip
|
49 |
-
# skips: # optional, default is DEFAULT
|
50 |
-
# path to a .bandit file that supplies command line arguments
|
51 |
-
# ini_path: # optional, default is DEFAULT
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/codeql.yml
DELETED
@@ -1,78 +0,0 @@
|
|
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 |
-
#
|
7 |
-
# ******** NOTE ********
|
8 |
-
# We have attempted to detect the languages in your repository. Please check
|
9 |
-
# the `language` matrix defined below to confirm you have the correct set of
|
10 |
-
# supported CodeQL languages.
|
11 |
-
#
|
12 |
-
name: "CodeQL"
|
13 |
-
|
14 |
-
on: [push]
|
15 |
-
|
16 |
-
jobs:
|
17 |
-
analyze:
|
18 |
-
name: Analyze
|
19 |
-
# Runner size impacts CodeQL analysis time. To learn more, please see:
|
20 |
-
# - https://gh.io/recommended-hardware-resources-for-running-codeql
|
21 |
-
# - https://gh.io/supported-runners-and-hardware-resources
|
22 |
-
# - https://gh.io/using-larger-runners
|
23 |
-
# Consider using larger runners for possible analysis time improvements.
|
24 |
-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
|
25 |
-
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
26 |
-
permissions:
|
27 |
-
# required for all workflows
|
28 |
-
security-events: write
|
29 |
-
|
30 |
-
# only required for workflows in private repositories
|
31 |
-
actions: read
|
32 |
-
contents: read
|
33 |
-
|
34 |
-
strategy:
|
35 |
-
fail-fast: false
|
36 |
-
matrix:
|
37 |
-
language: [ 'python' ]
|
38 |
-
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
|
39 |
-
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
|
40 |
-
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
|
41 |
-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
42 |
-
|
43 |
-
steps:
|
44 |
-
- name: Checkout repository
|
45 |
-
uses: actions/checkout@v4
|
46 |
-
|
47 |
-
# Initializes the CodeQL tools for scanning.
|
48 |
-
- name: Initialize CodeQL
|
49 |
-
uses: github/codeql-action/init@v3
|
50 |
-
with:
|
51 |
-
languages: ${{ matrix.language }}
|
52 |
-
# If you wish to specify custom queries, you can do so here or in a config file.
|
53 |
-
# By default, queries listed here will override any specified in a config file.
|
54 |
-
# Prefix the list here with "+" to use these queries and those in the config file.
|
55 |
-
|
56 |
-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
57 |
-
# queries: security-extended,security-and-quality
|
58 |
-
|
59 |
-
|
60 |
-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
|
61 |
-
# If this step fails, then you should remove it and run the build manually (see below)
|
62 |
-
- name: Autobuild
|
63 |
-
uses: github/codeql-action/autobuild@v3
|
64 |
-
|
65 |
-
# ℹ️ Command-line programs to run using the OS shell.
|
66 |
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
67 |
-
|
68 |
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
69 |
-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
70 |
-
|
71 |
-
# - run: |
|
72 |
-
# echo "Run, Build Application using script"
|
73 |
-
# ./location_of_script_within_repo/buildscript.sh
|
74 |
-
|
75 |
-
- name: Perform CodeQL Analysis
|
76 |
-
uses: github/codeql-action/analyze@v3
|
77 |
-
with:
|
78 |
-
category: "/language:${{matrix.language}}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/docker-image.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
name: Docker Image CI
|
2 |
-
|
3 |
-
on:
|
4 |
-
push:
|
5 |
-
branches: [ "main" ]
|
6 |
-
pull_request:
|
7 |
-
branches: [ "main" ]
|
8 |
-
|
9 |
-
jobs:
|
10 |
-
|
11 |
-
build:
|
12 |
-
|
13 |
-
runs-on: ubuntu-latest
|
14 |
-
|
15 |
-
steps:
|
16 |
-
- uses: actions/checkout@v3
|
17 |
-
- name: Build the Docker image
|
18 |
-
run: docker build . --file Dockerfile --tag urluploader:$(date +%s)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/docker-publish.yml
DELETED
@@ -1,97 +0,0 @@
|
|
1 |
-
name: Docker
|
2 |
-
|
3 |
-
# This workflow uses actions that are not certified by GitHub.
|
4 |
-
# They are provided by a third-party and are governed by
|
5 |
-
# separate terms of service, privacy policy, and support
|
6 |
-
# documentation.
|
7 |
-
|
8 |
-
on:
|
9 |
-
schedule:
|
10 |
-
- cron: '22 2 * * *'
|
11 |
-
push:
|
12 |
-
branches: [ "main" ]
|
13 |
-
# Publish semver tags as releases.
|
14 |
-
tags: [ 'v*.*.*' ]
|
15 |
-
pull_request:
|
16 |
-
branches: [ "main" ]
|
17 |
-
|
18 |
-
env:
|
19 |
-
# Use docker.io for Docker Hub if empty
|
20 |
-
REGISTRY: ghcr.io
|
21 |
-
# github.repository as <account>/<repo>
|
22 |
-
IMAGE_NAME: ${{ github.repository }}
|
23 |
-
|
24 |
-
|
25 |
-
jobs:
|
26 |
-
build:
|
27 |
-
|
28 |
-
runs-on: ubuntu-latest
|
29 |
-
permissions:
|
30 |
-
contents: read
|
31 |
-
packages: write
|
32 |
-
# This is used to complete the identity challenge
|
33 |
-
# with sigstore/fulcio when running outside of PRs.
|
34 |
-
id-token: write
|
35 |
-
|
36 |
-
steps:
|
37 |
-
- name: Checkout repository
|
38 |
-
uses: actions/checkout@v3
|
39 |
-
|
40 |
-
# Install the cosign tool except on PR
|
41 |
-
# https://github.com/sigstore/cosign-installer
|
42 |
-
- name: Install cosign
|
43 |
-
if: github.event_name != 'pull_request'
|
44 |
-
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
|
45 |
-
with:
|
46 |
-
cosign-release: 'v2.1.1'
|
47 |
-
|
48 |
-
# Workaround: https://github.com/docker/build-push-action/issues/461
|
49 |
-
- name: Setup Docker buildx
|
50 |
-
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
|
51 |
-
|
52 |
-
# Login against a Docker registry except on PR
|
53 |
-
# https://github.com/docker/login-action
|
54 |
-
- name: Log into registry ${{ env.REGISTRY }}
|
55 |
-
if: github.event_name != 'pull_request'
|
56 |
-
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
57 |
-
with:
|
58 |
-
registry: ${{ env.REGISTRY }}
|
59 |
-
username: ${{ github.actor }}
|
60 |
-
password: ${{ secrets.GITHUB_TOKEN }}
|
61 |
-
|
62 |
-
# Extract metadata (tags, labels) for Docker
|
63 |
-
# https://github.com/docker/metadata-action
|
64 |
-
- name: Extract Docker metadata
|
65 |
-
id: meta
|
66 |
-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
67 |
-
with:
|
68 |
-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
69 |
-
|
70 |
-
# Build and push Docker image with Buildx (don't push on PR)
|
71 |
-
# https://github.com/docker/build-push-action
|
72 |
-
- name: Build and push Docker image
|
73 |
-
id: build-and-push
|
74 |
-
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
|
75 |
-
with:
|
76 |
-
context: .
|
77 |
-
push: ${{ github.event_name != 'pull_request' }}
|
78 |
-
tags: ${{ steps.meta.outputs.tags }}
|
79 |
-
labels: ${{ steps.meta.outputs.labels }}
|
80 |
-
cache-from: type=gha
|
81 |
-
cache-to: type=gha,mode=max
|
82 |
-
|
83 |
-
|
84 |
-
# Sign the resulting Docker image digest except on PRs.
|
85 |
-
# This will only write to the public Rekor transparency log when the Docker
|
86 |
-
# repository is public to avoid leaking data. If you would like to publish
|
87 |
-
# transparency data even for private images, pass --force to cosign below.
|
88 |
-
# https://github.com/sigstore/cosign
|
89 |
-
- name: Sign the published Docker image
|
90 |
-
if: ${{ github.event_name != 'pull_request' }}
|
91 |
-
env:
|
92 |
-
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
|
93 |
-
TAGS: ${{ steps.meta.outputs.tags }}
|
94 |
-
DIGEST: ${{ steps.build-and-push.outputs.digest }}
|
95 |
-
# This step uses the identity token to provision an ephemeral certificate
|
96 |
-
# against the sigstore community Fulcio instance.
|
97 |
-
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/pylint.yml
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
name: Pylint
|
2 |
-
|
3 |
-
on: [push]
|
4 |
-
|
5 |
-
jobs:
|
6 |
-
build:
|
7 |
-
runs-on: ubuntu-latest
|
8 |
-
strategy:
|
9 |
-
matrix:
|
10 |
-
python-version: ["3.8", "3.9", "3.10"]
|
11 |
-
steps:
|
12 |
-
- uses: actions/checkout@v3
|
13 |
-
- name: Set up Python ${{ matrix.python-version }}
|
14 |
-
uses: actions/setup-python@v3
|
15 |
-
with:
|
16 |
-
python-version: ${{ matrix.python-version }}
|
17 |
-
- name: Install dependencies
|
18 |
-
run: |
|
19 |
-
python -m pip install --upgrade pip
|
20 |
-
pip install pylint
|
21 |
-
- name: Analysing the code with pylint
|
22 |
-
run: |
|
23 |
-
pylint $(git ls-files '*.py')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ll.github/workflows/pyre.yml
DELETED
@@ -1,46 +0,0 @@
|
|
1 |
-
# This workflow uses actions that are not certified by GitHub.
|
2 |
-
# They are provided by a third-party and are governed by
|
3 |
-
# separate terms of service, privacy policy, and support
|
4 |
-
# documentation.
|
5 |
-
|
6 |
-
# This workflow integrates Pyre with GitHub's
|
7 |
-
# Code Scanning feature.
|
8 |
-
#
|
9 |
-
# Pyre is a performant type checker for Python compliant with
|
10 |
-
# PEP 484. Pyre can analyze codebases with millions of lines
|
11 |
-
# of code incrementally – providing instantaneous feedback
|
12 |
-
# to developers as they write code.
|
13 |
-
#
|
14 |
-
# See https://pyre-check.org
|
15 |
-
|
16 |
-
name: Pyre
|
17 |
-
|
18 |
-
on:
|
19 |
-
workflow_dispatch:
|
20 |
-
push:
|
21 |
-
branches: [ "main" ]
|
22 |
-
pull_request:
|
23 |
-
branches: [ "main" ]
|
24 |
-
|
25 |
-
permissions:
|
26 |
-
contents: read
|
27 |
-
|
28 |
-
jobs:
|
29 |
-
pyre:
|
30 |
-
permissions:
|
31 |
-
actions: read
|
32 |
-
contents: read
|
33 |
-
security-events: write
|
34 |
-
runs-on: ubuntu-latest
|
35 |
-
steps:
|
36 |
-
- uses: actions/checkout@v3
|
37 |
-
with:
|
38 |
-
submodules: true
|
39 |
-
|
40 |
-
- name: Run Pyre
|
41 |
-
uses: facebook/pyre-action@60697a7858f7cc8470d8cc494a3cf2ad6b06560d
|
42 |
-
with:
|
43 |
-
# To customize these inputs:
|
44 |
-
# See https://github.com/facebook/pyre-action#inputs
|
45 |
-
repo-directory: './'
|
46 |
-
requirements-path: 'requirements.txt'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|