Skip to content

Commit 63ec7d2

Browse files
build: bump GitHub Actions packages (9 updates)
Upgrades from Dependabot PR #61: - actions/checkout v4 -> v6 - azure/login v2 -> v3 - actions/setup-python v5 -> v6 - tj-actions/changed-files v46 -> v47.0.5 - lycheeverse/lychee-action v2.4.1 -> v2.8.0 - codfish/semantic-release-action v3 -> v5 - amannn/action-semantic-pull-request v5 -> v6 - actions/stale v9 -> v10 - actions/upload-artifact v4 -> v7 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b345a35 commit 63ec7d2

7 files changed

Lines changed: 20 additions & 20 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: 4 additions & 4 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,7 +34,7 @@ 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: >
4040
--verbose --exclude-mail --no-progress --exclude ^https?://
@@ -47,7 +47,7 @@ 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: >
5353
--verbose --exclude-mail --no-progress --exclude ^https?://

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.sha }}
2121

22-
- uses: codfish/semantic-release-action@v3
22+
- uses: codfish/semantic-release-action@v5
2323
id: semantic
2424
with:
2525
tag-format: 'v${version}'

.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

0 commit comments

Comments
 (0)