Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ updates:
groups:
github-actions:
patterns: ["*"]
cooldown:
default-days: 7
8 changes: 4 additions & 4 deletions .github/workflows/azure-login-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: 'Az CLI login with subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- run: |
az account show --output none

- name: 'Az CLI login without subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
allow-no-subscriptions: true
Expand All @@ -50,7 +50,7 @@ jobs:
az account show --output none

- name: 'Az CLI login with subscription OIDC'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
Expand All @@ -60,7 +60,7 @@ jobs:
az account show --output none

- name: 'Az CLI login without subscription OIDC'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/azure-login-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# continue-on-error: true
steps:
- name: 'Az CLI login with subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

Expand All @@ -23,7 +23,7 @@ jobs:
az vm list --output none

- name: 'Az CLI login without subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
allow-no-subscriptions: true
Expand All @@ -32,24 +32,24 @@ jobs:
az account show --output none

- name: 'Azure PowerShell login with subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
enable-AzPSSession: true

- uses: azure/powershell@v3
- uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
inlineScript: "(Get-AzContext).Environment.Name"
azPSVersion: "latest"

- name: 'Azure PowerShell login without subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{secrets.AZURE_CREDENTIALS}}
enable-AzPSSession: true
allow-no-subscriptions: true

- uses: azure/powershell@v3
- uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
inlineScript: "(Get-AzContext).Environment.Name"
azPSVersion: "latest"
Expand All @@ -59,7 +59,7 @@ jobs:
# continue-on-error: true
steps:
- name: 'Az CLI login with subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
Expand All @@ -70,7 +70,7 @@ jobs:
az vm list --output none

- name: 'Az CLI login without subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
Expand All @@ -80,27 +80,27 @@ jobs:
az account show --output none

- name: 'Azure PowerShell login with subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTIONID }}
enable-AzPSSession: true

- uses: azure/powershell@v3
- uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
inlineScript: "(Get-AzContext).Environment.Name"
azPSVersion: "latest"

- name: 'Azure PowerShell login without subscription'
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
client-id: ${{ secrets.AZURE_CLIENTID }}
tenant-id: ${{ secrets.AZURE_TENANTID }}
enable-AzPSSession: true
allow-no-subscriptions: true

- uses: azure/powershell@v3
- uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
inlineScript: "(Get-AzContext).Environment.Name"
azPSVersion: "latest"
26 changes: 13 additions & 13 deletions .github/workflows/azure-login-live-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Azure login (provisioning)
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.PROVISION_CREDS }}
- name: Create resource group
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
az group show --name "${{ env.RG_POSITIVE }}" --output none

- name: Run Azure PowerShell
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand All @@ -105,7 +105,7 @@ jobs:
az account show --output none

- name: Run Azure PowerShell again
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand All @@ -127,7 +127,7 @@ jobs:
az group show --name "${{ env.RG_POSITIVE }}" --output none

- name: Run Azure PowerShell
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
az group show --name "${{ env.RG_POSITIVE }}" --output none

- name: Run Azure PowerShell
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand All @@ -217,7 +217,7 @@ jobs:
az account show --output none

- name: Run Azure PowerShell again
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand All @@ -243,7 +243,7 @@ jobs:
}

- name: Run Azure PowerShell
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand All @@ -264,7 +264,7 @@ jobs:
az account show --output none

- name: Run Azure PowerShell
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
az group list --output none

- name: Run Azure PowerShell again
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -401,7 +401,7 @@ jobs:
- name: Run Azure PowerShell
id: ps_3
continue-on-error: true
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -529,7 +529,7 @@ jobs:
- name: Run Azure PowerShell
id: ps_8
continue-on-error: true
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -557,7 +557,7 @@ jobs:
- name: Run Azure PowerShell
id: ps_9
continue-on-error: true
uses: azure/powershell@v3
uses: azure/powershell@f5b8adcfff1904872c7b98d4012d4914d74b1a82 # v3.0.0
with:
azPSVersion: "latest"
inlineScript: |
Expand Down Expand Up @@ -686,7 +686,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Azure login (provisioning)
uses: azure/login@v3
uses: azure/login@7ddb5af1ef8758cf1353cf3b42f940aee27ba21c # v3.0.2
with:
creds: ${{ secrets.PROVISION_CREDS }}
- name: Delete resource group
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
*) echo "::error::ref '$REF' not permitted for release (allowed: master, or a hotfix/* branch based on the latest release tag for a back-major release)"; exit 1 ;;
esac

- uses: actions/checkout@v6
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
ref: ${{ inputs.ref }} # master for the current major; a hotfix/* branch for a back-major release
fetch-depth: 0
Expand All @@ -94,7 +94,7 @@ jobs:
ver=$(grep "using:" action.yml | grep -oE "node[0-9]+" | grep -oE "[0-9]+" | head -1)
echo "version=$ver" >> "$GITHUB_OUTPUT"

- uses: actions/setup-node@v6
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version: ${{ steps.node.outputs.version }} # matches action.yml runs.using
cache: npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rollback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v6
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
fetch-depth: 0
fetch-tags: true
Expand Down
Loading