Skip to content

Commit 8edcc91

Browse files
build: bump the all-actions group with 8 updates (#2109)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b9b2379 commit 8edcc91

14 files changed

Lines changed: 23 additions & 23 deletions

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
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@7dee1b0c1557f278e5c7dc244927139d78c0e22a # v47.0.4
2828
with:
2929
files: |
3030
**/*.md
3131
# For PR: Check broken links only in changed files
3232
- name: Check Broken Links in Changed Markdown Files
3333
id: lychee-check-pr
3434
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
35-
uses: lycheeverse/lychee-action@v2.7.0
35+
uses: lycheeverse/lychee-action@v2.8.0
3636
with:
3737
args: >
3838
--verbose --no-progress --exclude ^https?://
@@ -45,7 +45,7 @@ jobs:
4545
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4646
id: lychee-check-manual
4747
if: github.event_name == 'workflow_dispatch'
48-
uses: lycheeverse/lychee-action@v2.7.0
48+
uses: lycheeverse/lychee-action@v2.8.0
4949
with:
5050
args: >
5151
--verbose --no-progress --exclude ^https?://

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050

5151
- name: Install azd
5252
uses: Azure/setup-azd@v2

.github/workflows/comment_coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
github.event.workflow_run.conclusion != 'cancelled'
1919
steps:
2020
- name: Download artifact
21-
uses: actions/download-artifact@v7
21+
uses: actions/download-artifact@v8
2222
with:
2323
name: coverage
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -39,7 +39,7 @@ jobs:
3939
return response.data[0]?.number ?? "";
4040
retries: 3
4141
- name: Comment coverage
42-
uses: MishaKav/pytest-coverage-comment@ae0e8a539a3f310aefb3bfb6a2209778a21fa42b
42+
uses: MishaKav/pytest-coverage-comment@25a4660954f81456fdfca755d569ed6e18f9423c
4343
with:
4444
pytest-xml-coverage-path: coverage.xml
4545
junitxml-path: coverage-junit.xml

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323

24-
- uses: codfish/semantic-release-action@v4
24+
- uses: codfish/semantic-release-action@v5
2525
id: semantic
2626
with:
2727
tag-format: 'v${version}'

.github/workflows/group_dependabot_security_updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
GROUP_CONFIG_YARN: ${{ github.event.inputs.group_config_yarn || 'frontend' }}
5858
steps:
5959
- name: Checkout default branch
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v6
6161

6262
- name: Set up Git
6363
run: |

.github/workflows/import-sample-data-cosmosdb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout Code
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757

5858
- name: Validate Workflow Input Parameters
5959
shell: bash
@@ -150,7 +150,7 @@ jobs:
150150
echo "✅ All input parameters validated successfully!"
151151
152152
- name: Setup Python
153-
uses: actions/setup-python@v5
153+
uses: actions/setup-python@v6
154154
with:
155155
python-version: '3.11'
156156

.github/workflows/import-sample-data-postgresql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout Code
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141

4242
- name: Validate Workflow Input Parameters
4343
shell: bash
@@ -93,7 +93,7 @@ jobs:
9393
echo "✅ All input parameters validated successfully!"
9494
9595
- name: Setup Python
96-
uses: actions/setup-python@v5
96+
uses: actions/setup-python@v6
9797
with:
9898
python-version: '3.11'
9999

.github/workflows/job-deploy-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
AZURE_SEARCH_INDEX: ${{ steps.get_output_linux.outputs.AZURE_SEARCH_INDEX }}
7979
steps:
8080
- name: Checkout Code
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282

8383
- name: Validate Workflow Input Parameters
8484
shell: bash
@@ -236,7 +236,7 @@ jobs:
236236
uses: Azure/setup-azd@v2
237237

238238
- name: Setup Python
239-
uses: actions/setup-python@v5
239+
uses: actions/setup-python@v6
240240
with:
241241
python-version: '3.11'
242242

.github/workflows/job-deploy-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
AZURE_SEARCH_INDEX: ${{ steps.get_output_windows.outputs.AZURE_SEARCH_INDEX }}
7979
steps:
8080
- name: Checkout Code
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282

8383
- name: Validate Workflow Input Parameters
8484
shell: bash
@@ -236,7 +236,7 @@ jobs:
236236
uses: Azure/setup-azd@v2
237237

238238
- name: Setup Python
239-
uses: actions/setup-python@v5
239+
uses: actions/setup-python@v6
240240
with:
241241
python-version: '3.11'
242242

.github/workflows/job-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125

126126
steps:
127127
- name: Checkout Code
128-
uses: actions/checkout@v4
128+
uses: actions/checkout@v6
129129

130130
- name: Validate Workflow Input Parameters
131131
shell: bash

0 commit comments

Comments
 (0)