Skip to content

Commit

Permalink
removed minor version for azure/login
Browse files Browse the repository at this point in the history
  • Loading branch information
shanice-skylight committed Dec 18, 2024
1 parent b0dc3f0 commit 997ad2f
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-frontend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
path: |
./frontend/node_modules
key: npm-${{ env.NODE_VERSION }}-${{ hashFiles('frontend/yarn.lock', 'frontend/package.json') }}
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ inputs.azure_creds }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/db-actions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
using: composite
steps:
- name: Login to Azure
uses: azure/login@v2.2.0
uses: azure/login@v2
with:
creds: ${{ inputs.azure_credentials }}

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/deploy-application/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
runs:
using: composite
steps:
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ inputs.azure_creds }}
- name: Retrieve frontend build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Maintenance banner deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapDemoAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapDevAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapProdAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapStgAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapTestAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slotSwapTrainingAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.TERRAFORM_ARM_TENANT_ID }}
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Slot swap to previous release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraformChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
if: ${{ github.actor == 'dependabot[bot]' }}
run: |
true
- uses: azure/login@v2.2.0
- uses: azure/login@v2
if: ${{ github.actor != 'dependabot[bot]' }}
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraformPlan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
working-directory: ./ops
steps:
- uses: actions/checkout@v4
- uses: azure/login@v2.2.0
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Use prod Okta token if required
Expand Down

0 comments on commit 997ad2f

Please sign in to comment.