Merge branch 'main' into codeql-add-swift

This commit is contained in:
Issy Long
2023-06-02 09:50:06 +01:00
committed by GitHub
11 changed files with 17 additions and 21 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue has become stale and will be closed automatically within a period of time. Sorry about that.'
stale-pr-message: 'This pull request has become stale and will be closed automatically within a period of time. Sorry about that.'
+3 -3
View File
@@ -1,4 +1,4 @@
* @actions/starter-workflows
* @actions/actions-workflow-development-reviewers
/code-scanning/ @actions/advanced-security-code-scanning @actions/starter-workflows
/pages/ @actions/pages @actions/starter-workflows
/code-scanning/ @actions/advanced-security-code-scanning @actions/actions-workflow-development-reviewers
/pages/ @actions/pages @actions/actions-workflow-development-reviewers
+3 -1
View File
@@ -15,6 +15,8 @@ on:
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
@@ -27,4 +29,4 @@ jobs:
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ github.event.inputs.name }}"
run: echo "Hello ${{ inputs.name }}"
+3 -2
View File
@@ -23,7 +23,8 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
@@ -51,7 +52,7 @@ jobs:
# 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
# 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
# queries: security-extended,security-and-quality
@@ -21,8 +21,7 @@ name: Deploy container to Azure Functions App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
permissions:
contents: read
+1 -2
View File
@@ -20,8 +20,7 @@ name: Deploy DotNet project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
env:
AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure
@@ -20,8 +20,7 @@ name: Deploy Gradle Java project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
permissions:
contents: read
+1 -2
View File
@@ -20,8 +20,7 @@ name: Deploy Java project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
env:
AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure
+1 -2
View File
@@ -22,8 +22,7 @@ name: Deploy Node.js project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
env:
AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure
@@ -20,8 +20,7 @@ name: Deploy PowerShell project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
env:
AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure
+1 -2
View File
@@ -20,8 +20,7 @@ name: Deploy Python project to Azure Function App
on:
push:
branches:
- [$default-branch]
branches: [$default-branch]
env:
AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure