Skip to content

Commit

Permalink
Updated github workflows files to use the latest version available of…
Browse files Browse the repository at this point in the history
… the referenced modules.
  • Loading branch information
panchosoft committed Aug 19, 2024
1 parent 7cb0493 commit 00ad953
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy_all_functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials

# Setup dotnet command
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -61,7 +61,7 @@ jobs:
popd
# Deploy build to Azure function app environment
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
uses: Azure/functions-action@v1.5.0
with:
app-name: ${{ matrix.function_name }}
package: '${{ matrix.package_path }}/output'
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
steps:
# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy_liquid_functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials

# Setup dotnet command
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -59,7 +59,7 @@ jobs:
popd
# Deploy build to Azure function app environment
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
uses: Azure/functions-action@v1.5.0
with:
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
steps:
# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy_solid_functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials

# Setup dotnet command
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -59,7 +59,7 @@ jobs:
popd
# Deploy build to Azure function app environment
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
uses: Azure/functions-action@v1.5.0
with:
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
steps:
# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy_solidus_functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials

# Setup dotnet command
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -59,7 +59,7 @@ jobs:
popd
# Deploy build to Azure function app environment
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
uses: Azure/functions-action@v1.5.0
with:
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
steps:
# Login to Azure using secrets credentials
- name: 'Login via Azure CLI'
uses: azure/login@v1
uses: azure/login@v1.5.0
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

Expand Down

0 comments on commit 00ad953

Please sign in to comment.