Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/v7.x' into yanndanthu/update-t…
Browse files Browse the repository at this point in the history
…o-v7.14.3
  • Loading branch information
YannDanthu committed Jun 12, 2024
2 parents a8b86c4 + 57541df commit b0a4a90
Show file tree
Hide file tree
Showing 109 changed files with 8,082 additions and 1,426 deletions.
6 changes: 0 additions & 6 deletions .c8rc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ body:
required: true
- type: checkboxes
attributes:
label: Required
options:
- label: I have provided a gist or a public repo which can be cloned, installed and ran locally in order to reproduce the bug in the textarea above.
required: true
- label: I have searched the issues tracker and discussions for similar topics and couldn't find anything related.
required: true
- label: I have searched the [FAQ](https://github.com/panva/node-oidc-provider/blob/v7.x/docs/README.md#faq) and couldn't find anything related.
Expand Down
17 changes: 5 additions & 12 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: Support the project
url: https://github.com/sponsors/panva
about:
To make sure you get your questions answered
- name: ❓ Question
url: https://github.com/panva/node-oidc-provider/discussions/894
about:
Have a question about using oidc-provider? Head over to the discussions "Q&A" Category
Have a question about using oidc-provider? Support the project and then head over to the discussions "Q&A" Category
- name: 💡 Feature proposal
url: https://github.com/panva/node-oidc-provider/discussions/893
about:
Have a proposal for a new feature? Head over to the discussions "Ideas" Category
- name: Support the project
url: https://github.com/sponsors/panva
about:
Are you asking your nth question? Relying on oidc-provider for critical operations? Consider
supporting the project so that it may continue being maintained.
- name: Report a security vulnerability
url: https://en.wikipedia.org/wiki/Responsible_disclosure
about:
Do not disclose vulnerabilities via issues or discussions. Reach out to the project team
via e.g. email, we'll work together on patching the vulnerability and follow some form of
Responsible disclosure once fixed. Thank you.
52 changes: 0 additions & 52 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

74 changes: 74 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '55 11 * * 1'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# 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
# queries: security-extended,security-and-quality


# 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@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
12 changes: 0 additions & 12 deletions .github/workflows/label-sponsors.yml

This file was deleted.

9 changes: 5 additions & 4 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ name: 'Lock threads'

on:
schedule:
- cron: '0 9 * * *'
- cron: '55 11 * * 1'

jobs:
lock:
continue-on-error: true
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
- uses: dessant/lock-threads@e460dfeb36e731f3aeb214be6b0c9a9d9a67eda6
with:
github-token: ${{ github.token }}
issue-lock-inactive-days: '90'
issue-inactive-days: '90'
issue-lock-reason: ''
pr-lock-inactive-days: '90'
pr-inactive-days: '90'
pr-lock-reason: ''
Loading

0 comments on commit b0a4a90

Please sign in to comment.