Skip to content

Commit

Permalink
update github checkout action to v4 for node 16 deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
andyvroberts committed Jul 31, 2024
1 parent f732e2f commit 0d8dfff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-deploy-004.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
- 'SAA/S0142/**'

env:
AZURE_FUNCTIONAPP_NAME: 'SmokeFunc004' # set this to your function app name on Azure
AZURE_FUNCTIONAPP_PACKAGE_PATH: './SAA/S0142' # set this to the path to your function app project, defaults to the repository root
DOTNET_VERSION: '8.0.x' # set this to the dotnet version to use (e.g. '2.1.x', '3.1.x', '5.0.x')
AZURE_FUNCTIONAPP_NAME: 'SmokeFunc005' # set this to your function app name on Azure
AZURE_FUNCTIONAPP_PACKAGE_PATH: './SAA/S0142' # set this to the path to your function app project, defaults to the repository root
DOTNET_VERSION: '8.0.x' # set this to the dotnet version to use (e.g. '2.1.x', '3.1.x', '5.0.x')

jobs:
# 1. BUILD
Expand All @@ -27,7 +27,7 @@ jobs:
# dotnet-version: [ '3.1.x', '6.0.x' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
Expand All @@ -47,7 +47,7 @@ jobs:
environment: dev
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v3
Expand Down
1 change: 1 addition & 0 deletions SAA/S0142/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
.vscode

# Azure Functions localsettings file
local.settings.json
Expand Down

0 comments on commit 0d8dfff

Please sign in to comment.