Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI environment] Update workflows gh runner image version to ubuntu-latest #4436

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions .github/workflows/ms.aad.domainservices.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
name: 'AAD - DomainServices'
name: "AAD - DomainServices"

on:
workflow_dispatch:
inputs:
staticValidation:
type: boolean
description: 'Execute static validation'
description: "Execute static validation"
required: false
default: true
deploymentValidation:
type: boolean
description: 'Execute deployment validation'
description: "Execute deployment validation"
required: false
default: true
removeDeployment:
type: boolean
description: 'Remove deployed module'
description: "Remove deployed module"
required: false
default: true
prerelease:
type: boolean
description: 'Publish prerelease module'
description: "Publish prerelease module"
required: false
default: false
push:
branches:
- main
paths:
- '.github/actions/templates/**'
- '.github/workflows/template.module.yml'
- '.github/workflows/ms.aad.domainservices.yml'
- 'modules/aad/domain-service/**'
- 'utilities/pipelines/**'
- '!utilities/pipelines/deploymentRemoval/**'
- '!*/**/README.md'
- ".github/actions/templates/**"
- ".github/workflows/template.module.yml"
- ".github/workflows/ms.aad.domainservices.yml"
- "modules/aad/domain-service/**"
- "utilities/pipelines/**"
- "!utilities/pipelines/deploymentRemoval/**"
- "!*/**/README.md"

env:
modulePath: 'modules/aad/domain-service'
workflowPath: '.github/workflows/ms.aad.domainservices.yml'
modulePath: "modules/aad/domain-service"
workflowPath: ".github/workflows/ms.aad.domainservices.yml"

concurrency:
group: ${{ github.workflow }}
Expand All @@ -47,38 +47,38 @@ jobs:
# Initialize pipeline #
###########################
job_initialize_pipeline:
runs-on: ubuntu-20.04
name: 'Initialize pipeline'
runs-on: ubuntu-latest
name: "Initialize pipeline"
steps:
- name: 'Checkout'
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Set input parameters to output variables'
- name: "Set input parameters to output variables"
id: get-workflow-param
uses: ./.github/actions/templates/getWorkflowInput
with:
workflowPath: '${{ env.workflowPath}}'
- name: 'Get parameter file paths'
workflowPath: "${{ env.workflowPath}}"
- name: "Get parameter file paths"
id: get-module-test-file-paths
uses: ./.github/actions/templates/getModuleTestFiles
with:
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"
outputs:
workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }}
moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }}
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"

##############################
# Call reusable workflow #
##############################
call-workflow-passing-data:
name: 'Module'
name: "Module"
needs:
- job_initialize_pipeline
uses: ./.github/workflows/template.module.yml
with:
workflowInput: '${{ needs.job_initialize_pipeline.outputs.workflowInput }}'
moduleTestFilePaths: '${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}'
modulePath: '${{ needs.job_initialize_pipeline.outputs.modulePath}}'
workflowInput: "${{ needs.job_initialize_pipeline.outputs.workflowInput }}"
moduleTestFilePaths: "${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}"
modulePath: "${{ needs.job_initialize_pipeline.outputs.modulePath}}"
secrets: inherit
52 changes: 26 additions & 26 deletions .github/workflows/ms.analysisservices.servers.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
name: 'AnalysisServices - Servers'
name: "AnalysisServices - Servers"

on:
workflow_dispatch:
inputs:
staticValidation:
type: boolean
description: 'Execute static validation'
description: "Execute static validation"
required: false
default: true
deploymentValidation:
type: boolean
description: 'Execute deployment validation'
description: "Execute deployment validation"
required: false
default: true
removeDeployment:
type: boolean
description: 'Remove deployed module'
description: "Remove deployed module"
required: false
default: true
prerelease:
type: boolean
description: 'Publish prerelease module'
description: "Publish prerelease module"
required: false
default: false
push:
branches:
- main
paths:
- '.github/actions/templates/**'
- '.github/workflows/template.module.yml'
- '.github/workflows/ms.analysisservices.servers.yml'
- 'modules/analysis-services/server/**'
- 'utilities/pipelines/**'
- '!utilities/pipelines/deploymentRemoval/**'
- '!*/**/README.md'
- ".github/actions/templates/**"
- ".github/workflows/template.module.yml"
- ".github/workflows/ms.analysisservices.servers.yml"
- "modules/analysis-services/server/**"
- "utilities/pipelines/**"
- "!utilities/pipelines/deploymentRemoval/**"
- "!*/**/README.md"

env:
modulePath: 'modules/analysis-services/server'
workflowPath: '.github/workflows/ms.analysisservices.servers.yml'
modulePath: "modules/analysis-services/server"
workflowPath: ".github/workflows/ms.analysisservices.servers.yml"

concurrency:
group: ${{ github.workflow }}
Expand All @@ -47,38 +47,38 @@ jobs:
# Initialize pipeline #
###########################
job_initialize_pipeline:
runs-on: ubuntu-20.04
name: 'Initialize pipeline'
runs-on: ubuntu-latest
name: "Initialize pipeline"
steps:
- name: 'Checkout'
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Set input parameters to output variables'
- name: "Set input parameters to output variables"
id: get-workflow-param
uses: ./.github/actions/templates/getWorkflowInput
with:
workflowPath: '${{ env.workflowPath}}'
- name: 'Get parameter file paths'
workflowPath: "${{ env.workflowPath}}"
- name: "Get parameter file paths"
id: get-module-test-file-paths
uses: ./.github/actions/templates/getModuleTestFiles
with:
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"
outputs:
workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }}
moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }}
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"

##############################
# Call reusable workflow #
##############################
call-workflow-passing-data:
name: 'Module'
name: "Module"
needs:
- job_initialize_pipeline
uses: ./.github/workflows/template.module.yml
with:
workflowInput: '${{ needs.job_initialize_pipeline.outputs.workflowInput }}'
moduleTestFilePaths: '${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}'
modulePath: '${{ needs.job_initialize_pipeline.outputs.modulePath}}'
workflowInput: "${{ needs.job_initialize_pipeline.outputs.workflowInput }}"
moduleTestFilePaths: "${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}"
modulePath: "${{ needs.job_initialize_pipeline.outputs.modulePath}}"
secrets: inherit
52 changes: 26 additions & 26 deletions .github/workflows/ms.apimanagement.service.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
name: 'ApiManagement - Service'
name: "ApiManagement - Service"

on:
workflow_dispatch:
inputs:
staticValidation:
type: boolean
description: 'Execute static validation'
description: "Execute static validation"
required: false
default: true
deploymentValidation:
type: boolean
description: 'Execute deployment validation'
description: "Execute deployment validation"
required: false
default: true
removeDeployment:
type: boolean
description: 'Remove deployed module'
description: "Remove deployed module"
required: false
default: true
prerelease:
type: boolean
description: 'Publish prerelease module'
description: "Publish prerelease module"
required: false
default: false
push:
branches:
- main
paths:
- '.github/actions/templates/**'
- '.github/workflows/template.module.yml'
- '.github/workflows/ms.apimanagement.service.yml'
- 'modules/api-management/service/**'
- 'utilities/pipelines/**'
- '!utilities/pipelines/deploymentRemoval/**'
- '!*/**/README.md'
- ".github/actions/templates/**"
- ".github/workflows/template.module.yml"
- ".github/workflows/ms.apimanagement.service.yml"
- "modules/api-management/service/**"
- "utilities/pipelines/**"
- "!utilities/pipelines/deploymentRemoval/**"
- "!*/**/README.md"

env:
modulePath: 'modules/api-management/service'
workflowPath: '.github/workflows/ms.apimanagement.service.yml'
modulePath: "modules/api-management/service"
workflowPath: ".github/workflows/ms.apimanagement.service.yml"

concurrency:
group: ${{ github.workflow }}
Expand All @@ -47,38 +47,38 @@ jobs:
# Initialize pipeline #
###########################
job_initialize_pipeline:
runs-on: ubuntu-20.04
name: 'Initialize pipeline'
runs-on: ubuntu-latest
name: "Initialize pipeline"
steps:
- name: 'Checkout'
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Set input parameters to output variables'
- name: "Set input parameters to output variables"
id: get-workflow-param
uses: ./.github/actions/templates/getWorkflowInput
with:
workflowPath: '${{ env.workflowPath}}'
- name: 'Get parameter file paths'
workflowPath: "${{ env.workflowPath}}"
- name: "Get parameter file paths"
id: get-module-test-file-paths
uses: ./.github/actions/templates/getModuleTestFiles
with:
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"
outputs:
workflowInput: ${{ steps.get-workflow-param.outputs.workflowInput }}
moduleTestFilePaths: ${{ steps.get-module-test-file-paths.outputs.moduleTestFilePaths }}
modulePath: '${{ env.modulePath }}'
modulePath: "${{ env.modulePath }}"

##############################
# Call reusable workflow #
##############################
call-workflow-passing-data:
name: 'Module'
name: "Module"
needs:
- job_initialize_pipeline
uses: ./.github/workflows/template.module.yml
with:
workflowInput: '${{ needs.job_initialize_pipeline.outputs.workflowInput }}'
moduleTestFilePaths: '${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}'
modulePath: '${{ needs.job_initialize_pipeline.outputs.modulePath}}'
workflowInput: "${{ needs.job_initialize_pipeline.outputs.workflowInput }}"
moduleTestFilePaths: "${{ needs.job_initialize_pipeline.outputs.moduleTestFilePaths }}"
modulePath: "${{ needs.job_initialize_pipeline.outputs.modulePath}}"
secrets: inherit
Loading
Loading