Skip to content

Commit 68cdef1

Browse files
Merge pull request #76 from microsoft/dev
chore: dev to main merge
2 parents b345a35 + 57f787d commit 68cdef1

9 files changed

Lines changed: 68 additions & 69 deletions

File tree

.github/workflows/azd-ai-template-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
environment: 'rti-validate'
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242

4343
- name: Set timestamp
4444
shell: bash

.github/workflows/azure-dev.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ jobs:
5050
ENV_NAME: ${{ steps.generate_env_name.outputs.ENV_NAME }}
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454

5555
- name: Setup Azure CLI
56-
uses: azure/login@v2
56+
uses: azure/login@v3
5757
with:
5858
client-id: ${{ env.AZURE_CLIENT_ID }}
5959
tenant-id: ${{ env.AZURE_TENANT_ID }}
@@ -140,10 +140,10 @@ jobs:
140140
ENV_NAME: ${{ needs.build.outputs.ENV_NAME }}
141141
steps:
142142
- name: Checkout
143-
uses: actions/checkout@v4
143+
uses: actions/checkout@v6
144144

145145
- name: Azure CLI login
146-
uses: azure/login@v2
146+
uses: azure/login@v3
147147
with:
148148
client-id: ${{ env.AZURE_CLIENT_ID }}
149149
tenant-id: ${{ env.AZURE_TENANT_ID }}
@@ -271,10 +271,10 @@ jobs:
271271
SOLUTION_SUFFIX: ${{ needs.deploy.outputs.SOLUTION_SUFFIX }}
272272
steps:
273273
- name: Checkout
274-
uses: actions/checkout@v4
274+
uses: actions/checkout@v6
275275

276276
- name: Azure CLI login
277-
uses: azure/login@v2
277+
uses: azure/login@v3
278278
with:
279279
client-id: ${{ env.AZURE_CLIENT_ID }}
280280
tenant-id: ${{ env.AZURE_TENANT_ID }}
@@ -337,4 +337,4 @@ jobs:
337337
echo "| **Resource Group** | \`${{ env.RESOURCE_GROUP_NAME }}\` — deleted |" >> $GITHUB_STEP_SUMMARY
338338
if [ -n "${{ env.SOLUTION_SUFFIX }}" ]; then
339339
echo "| **Fabric Workspace** | Deleted via azd down |" >> $GITHUB_STEP_SUMMARY
340-
fi
340+
fi

.github/workflows/broken-links-checker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

2323
# For PR : Get only changed markdown files
2424
- name: Get changed markdown files (PR only)
2525
id: changed-markdown-files
2626
if: github.event_name == 'pull_request'
27-
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46
27+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5
2828
with:
2929
files: |
3030
**/*.md
@@ -34,10 +34,10 @@ jobs:
3434
- name: Check Broken Links in Changed Markdown Files
3535
id: lychee-check-pr
3636
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
37-
uses: lycheeverse/lychee-action@v2.4.1
37+
uses: lycheeverse/lychee-action@v2.8.0
3838
with:
3939
args: >
40-
--verbose --exclude-mail --no-progress --exclude ^https?://
40+
--verbose --no-progress --exclude ^https?://
4141
${{ steps.changed-markdown-files.outputs.all_changed_files }}
4242
failIfEmpty: false
4343
env:
@@ -47,10 +47,10 @@ jobs:
4747
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4848
id: lychee-check-manual
4949
if: github.event_name == 'workflow_dispatch'
50-
uses: lycheeverse/lychee-action@v2.4.1
50+
uses: lycheeverse/lychee-action@v2.8.0
5151
with:
5252
args: >
53-
--verbose --exclude-mail --no-progress --exclude ^https?://
53+
--verbose --no-progress --exclude ^https?://
5454
'**/*.md'
5555
failIfEmpty: false
5656
env:

.github/workflows/create-release.yml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -14,53 +14,53 @@ jobs:
1414
create-release:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Checkout repository
18-
uses: actions/checkout@v4
19-
with:
20-
ref: ${{ github.sha }}
17+
- name: Checkout repository
18+
uses: actions/checkout@v6
19+
with:
20+
ref: ${{ github.sha }}
2121

22-
- uses: codfish/semantic-release-action@v3
23-
id: semantic
24-
with:
25-
tag-format: 'v${version}'
26-
additional-packages: |
27-
['conventional-changelog-conventionalcommits@7']
28-
plugins: |
29-
[
22+
- uses: codfish/semantic-release-action@v5
23+
id: semantic
24+
with:
25+
tag-format: 'v${version}'
26+
additional-packages: |
27+
['conventional-changelog-conventionalcommits@7']
28+
plugins: |
3029
[
31-
"@semantic-release/commit-analyzer",
32-
{
33-
"preset": "conventionalcommits"
34-
}
35-
],
36-
[
37-
"@semantic-release/release-notes-generator",
38-
{
39-
"preset": "conventionalcommits",
40-
"presetConfig": {
41-
"types": [
42-
{ type: 'feat', section: 'Features', hidden: false },
43-
{ type: 'fix', section: 'Bug Fixes', hidden: false },
44-
{ type: 'perf', section: 'Performance Improvements', hidden: false },
45-
{ type: 'revert', section: 'Reverts', hidden: false },
46-
{ type: 'docs', section: 'Other Updates', hidden: false },
47-
{ type: 'style', section: 'Other Updates', hidden: false },
48-
{ type: 'chore', section: 'Other Updates', hidden: false },
49-
{ type: 'refactor', section: 'Other Updates', hidden: false },
50-
{ type: 'test', section: 'Other Updates', hidden: false },
51-
{ type: 'build', section: 'Other Updates', hidden: false },
52-
{ type: 'ci', section: 'Other Updates', hidden: false }
53-
]
30+
[
31+
"@semantic-release/commit-analyzer",
32+
{
33+
"preset": "conventionalcommits"
34+
}
35+
],
36+
[
37+
"@semantic-release/release-notes-generator",
38+
{
39+
"preset": "conventionalcommits",
40+
"presetConfig": {
41+
"types": [
42+
{ type: 'feat', section: 'Features', hidden: false },
43+
{ type: 'fix', section: 'Bug Fixes', hidden: false },
44+
{ type: 'perf', section: 'Performance Improvements', hidden: false },
45+
{ type: 'revert', section: 'Reverts', hidden: false },
46+
{ type: 'docs', section: 'Other Updates', hidden: false },
47+
{ type: 'style', section: 'Other Updates', hidden: false },
48+
{ type: 'chore', section: 'Other Updates', hidden: false },
49+
{ type: 'refactor', section: 'Other Updates', hidden: false },
50+
{ type: 'test', section: 'Other Updates', hidden: false },
51+
{ type: 'build', section: 'Other Updates', hidden: false },
52+
{ type: 'ci', section: 'Other Updates', hidden: false }
53+
]
54+
}
5455
}
55-
}
56-
],
57-
'@semantic-release/github'
58-
]
59-
env:
60-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
],
57+
'@semantic-release/github'
58+
]
59+
env:
60+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161

62-
- run: echo ${{ steps.semantic.outputs.release-version }}
62+
- run: echo ${{ steps.semantic.outputs.release-version }}
6363

64-
- run: echo "$OUTPUTS"
65-
env:
66-
OUTPUTS: ${{ toJson(steps.semantic.outputs) }}
64+
- run: echo "$OUTPUTS"
65+
env:
66+
OUTPUTS: ${{ toJson(steps.semantic.outputs) }}

.github/workflows/pr-title-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: ${{ github.event_name != 'merge_group' }}
1919
steps:
20-
- uses: amannn/action-semantic-pull-request@v5
20+
- uses: amannn/action-semantic-pull-request@v6
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
matrix:
2222
python-version: ["3.11"]
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

.github/workflows/stale-bot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Mark Stale Issues and PRs
15-
uses: actions/stale@v9
15+
uses: actions/stale@v10
1616
with:
1717
stale-issue-message: "This issue is stale because it has been open 180 days with no activity. Remove stale label or comment, or it will be closed in 30 days."
1818
stale-pr-message: "This PR is stale because it has been open 180 days with no activity. Please update or it will be closed in 30 days."
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0 # Fetch full history for accurate branch checks
3030
- name: Fetch All Branches
@@ -75,7 +75,7 @@ jobs:
7575
env:
7676
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
- name: Upload CSV Report of Inactive Branches
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v7
7979
with:
8080
name: merged-branches-report
8181
path: merged_branches_report.csv

azure.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ metadata:
66

77
requiredVersions:
88
azd: ">= 1.19.0 != 1.23.9"
9-
bicep: '>= 0.33.0'
109

1110
hooks:
1211
postprovision:

infra/main.bicep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ var eventHubTags = union(allTags, {
106106
SecurityControl: 'Ignore' // Required to override MSFT subscription policy controls that enforce disableLocalAuth; local auth needed for Fabric SAS connection
107107
})
108108

109-
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
109+
resource resourceGroupTags 'Microsoft.Resources/tags@2023-07-01' = {
110110
name: 'default'
111111
properties: {
112-
tags: union(reference(resourceGroup().id, '2021-04-01', 'Full').?tags ?? {}, allTags)
112+
tags: union(reference(resourceGroup().id, '2023-07-01', 'Full').?tags ?? {}, allTags)
113113
}
114114
}
115115

@@ -138,7 +138,7 @@ module eventHubCrossScope 'modules/event-hub.bicep' = if (useExistingEventHubNam
138138
}
139139

140140
// Create a new Event Hub Namespace with an Event Hub when not using an existing namespace.
141-
module eventHubNamespaceModule 'br/public:avm/res/event-hub/namespace:0.13.0' = if (!useExistingEventHubNamespace) {
141+
module eventHubNamespaceModule 'br/public:avm/res/event-hub/namespace:0.14.1' = if (!useExistingEventHubNamespace) {
142142
name: take('avm.res.event-hub.namespace.${eventHubNamespaceName}', 64)
143143
params: {
144144
name: eventHubNamespaceName

0 commit comments

Comments
 (0)