Skip to content

Commit 56a9beb

Browse files
Merge pull request #941 from microsoft/psl-dependabotchanges-dk
fix: updated the dependabot changes packages
2 parents 768b2bc + d9de6e6 commit 56a9beb

27 files changed

Lines changed: 70 additions & 65 deletions

.github/workflows/agnext-biab-02-containerimage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929
- name: Extract metadata (tags, labels) for Docker
3030
id: meta
31-
uses: docker/metadata-action@v5
31+
uses: docker/metadata-action@v6
3232
with:
3333
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3434
tags: |
3535
type=ref,event=branch
3636
type=sha
3737
- name: Build and push Docker image
38-
uses: docker/build-push-action@v6
38+
uses: docker/build-push-action@v7
3939
with:
4040
context: agnext-biab-02/
4141
file: agnext-biab-02/Dockerfile

.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/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
7272
steps:
7373
- name: Checkout repository
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v6
7575

7676
# Initializes the CodeQL tools for scanning.
7777
- name: Initialize CodeQL

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.event.workflow_run.head_sha }}
2020

21-
- uses: codfish/semantic-release-action@v4
21+
- uses: codfish/semantic-release-action@v5
2222
id: semantic
2323
with:
2424
tag-format: 'v${version}'

.github/workflows/deploy-waf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
GPT41_MINI_MIN_CAPACITY: 1
2828
steps:
2929
- name: Checkout Code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131

3232
- name: Login to Azure
3333
uses: azure/login@v2

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
CONTAINER_APP: ${{steps.get_backend_url.outputs.CONTAINER_APP}}
3535
steps:
3636
- name: Checkout Code
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838

3939
- name: Login to Azure
4040
uses: azure/login@v2

.github/workflows/docker-build-and-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ jobs:
5656

5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v6
6060

6161
- name: Set up Docker Buildx
62-
uses: docker/setup-buildx-action@v3
62+
uses: docker/setup-buildx-action@v4
6363

6464
- name: Login to Azure
6565
if: ${{ github.ref_name == 'main' || github.ref_name == 'dev-v4'|| github.ref_name == 'demo-v4' || github.ref_name == 'hotfix' }}
@@ -105,7 +105,7 @@ jobs:
105105
echo "HISTORICAL_TAG=${{ env.TAG }}_${DATE_TAG}_${RUN_ID}" >> $GITHUB_ENV
106106
107107
- name: Build and optionally push Backend Docker image
108-
uses: docker/build-push-action@v6
108+
uses: docker/build-push-action@v7
109109
with:
110110
context: ./src/backend
111111
file: ./src/backend/Dockerfile
@@ -115,7 +115,7 @@ jobs:
115115
${{ steps.registry.outputs.ext_registry }}/macaebackend:${{ env.HISTORICAL_TAG }}
116116
117117
- name: Build and optionally push Frontend Docker image
118-
uses: docker/build-push-action@v6
118+
uses: docker/build-push-action@v7
119119
with:
120120
context: ./src/App
121121
file: ./src/App/Dockerfile
@@ -125,7 +125,7 @@ jobs:
125125
${{ steps.registry.outputs.ext_registry }}/macaefrontend:${{ env.HISTORICAL_TAG }}
126126
127127
- name: Build and optionally push MCP Docker image
128-
uses: docker/build-push-action@v6
128+
uses: docker/build-push-action@v7
129129
with:
130130
context: ./src/mcp_server
131131
file: ./src/mcp_server/Dockerfile

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
MACAE_URL_API: ${{ steps.get_output_linux.outputs.BACKEND_URL }}
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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
MACAE_URL_API: ${{ steps.get_output_windows.outputs.BACKEND_URL }}
5353
steps:
5454
- name: Checkout Code
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v6
5656

5757
- name: Validate Workflow Input Parameters
5858
shell: bash

.github/workflows/job-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ jobs:
284284
echo "Final EXP status: $EXP_ENABLED"
285285
286286
- name: Checkout Code
287-
uses: actions/checkout@v4
287+
uses: actions/checkout@v6
288288

289289
- name: Login to Azure
290290
uses: azure/login@v2

0 commit comments

Comments
 (0)