diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d511cd0..9fd413c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,9 @@ jobs: git config --global user.name github-actions[bot] git config pull.rebase false + # Replace 'blob/main' with 'blob/master' in generated README.md files + find src -name 'README.md' -exec sed -i 's|blob/main|blob/master|g' {} + + branch=automated-documentation-update-$GITHUB_RUN_ID git checkout -b $branch message='Automated documentation update' diff --git a/src/azure-functions-dotnet/devcontainer-template.json b/src/azure-functions-dotnet/devcontainer-template.json index 3228dda..a416d53 100644 --- a/src/azure-functions-dotnet/devcontainer-template.json +++ b/src/azure-functions-dotnet/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "azure-functions-dotnet", - "version": "2.0.1", + "version": "2.0.2", "name": "Azure Functions (.NET)", "description": "Develop C# and .NET based Azure Functions. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-dotnet", @@ -15,13 +15,14 @@ "9.0", "8.0" ], - "default": "8.0" + "default": "10.0" }, "azureFunctionsCliVersion": { "type": "string", "description": "Azure Functions CLI version:", "proposals": [ "latest", + "4.7.0", "4.6.0", "4.5.0", "4.4.0", diff --git a/src/azure-functions-java/devcontainer-template.json b/src/azure-functions-java/devcontainer-template.json index da25e57..c06478a 100644 --- a/src/azure-functions-java/devcontainer-template.json +++ b/src/azure-functions-java/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "azure-functions-java", - "version": "2.0.1", + "version": "2.0.2", "name": "Azure Functions (Java)", "description": "Develop Java based Azure Functions. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-java", @@ -24,6 +24,7 @@ "description": "Azure Functions CLI version:", "proposals": [ "latest", + "4.7.0", "4.6.0", "4.5.0", "4.4.0", diff --git a/src/azure-functions-node/devcontainer-template.json b/src/azure-functions-node/devcontainer-template.json index 92eead1..b13b69e 100644 --- a/src/azure-functions-node/devcontainer-template.json +++ b/src/azure-functions-node/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "azure-functions-node", - "version": "2.0.1", + "version": "2.0.2", "name": "Azure Functions (Node.js)", "description": "Develop JavaScript and TypeScript based Azure Functions. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-node", @@ -15,13 +15,14 @@ "22", "20" ], - "default": "22" + "default": "24" }, "azureFunctionsCliVersion": { "type": "string", "description": "Azure Functions CLI version:", "proposals": [ "latest", + "4.7.0", "4.6.0", "4.5.0", "4.4.0", diff --git a/src/azure-functions-powershell/devcontainer-template.json b/src/azure-functions-powershell/devcontainer-template.json index ad7e5c8..b73ece3 100644 --- a/src/azure-functions-powershell/devcontainer-template.json +++ b/src/azure-functions-powershell/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "azure-functions-powershell", - "version": "2.0.1", + "version": "2.0.2", "name": "Azure Functions (PowerShell)", "description": "Develop PowerShell based Azure Functions. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-powershell", @@ -20,6 +20,7 @@ "description": "Azure Functions CLI version:", "proposals": [ "latest", + "4.7.0", "4.6.0", "4.5.0", "4.4.0", diff --git a/src/azure-functions-python/devcontainer-template.json b/src/azure-functions-python/devcontainer-template.json index 3ce5151..0e8ea5b 100644 --- a/src/azure-functions-python/devcontainer-template.json +++ b/src/azure-functions-python/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "azure-functions-python", - "version": "2.0.1", + "version": "2.0.2", "name": "Azure Functions (Python)", "description": "Develop Python based Azure Functions. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/shibayan/devcontainers/tree/master/src/azure-functions-python", @@ -24,6 +24,7 @@ "description": "Azure Functions CLI version:", "proposals": [ "latest", + "4.7.0", "4.6.0", "4.5.0", "4.4.0", diff --git a/test/azure-functions-powershell/test.sh b/test/azure-functions-powershell/test.sh index 9fba58b..821dcb4 100644 --- a/test/azure-functions-powershell/test.sh +++ b/test/azure-functions-powershell/test.sh @@ -3,7 +3,7 @@ cd $(dirname "$0") source test-utils.sh # Template specific tests -check "powershell" pwsh --version +check "powershell" pwsh --version check "func" func --version # Report result