Skip to content

Commit 33c9f90

Browse files
Merge pull request #819 from microsoft/rc-dependabot-changes
fix: Update dependabot packages
2 parents e03e3ae + 1d3c341 commit 33c9f90

15 files changed

Lines changed: 1572 additions & 2272 deletions

.github/workflows/azure-dev.yml

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

3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: Set timestamp and env name
3838
shell: bash

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Get changed markdown files (PR only)
2626
id: changed-markdown-files
2727
if: github.event_name == 'pull_request'
28-
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v46
28+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v46
2929
with:
3030
files: |
3131
**/*.md
@@ -35,7 +35,7 @@ jobs:
3535
- name: Check Broken Links in Changed Markdown Files
3636
id: lychee-check-pr
3737
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
38-
uses: lycheeverse/lychee-action@v2.7.0
38+
uses: lycheeverse/lychee-action@v2.8.0
3939
with:
4040
args: >
4141
--verbose --no-progress --exclude ^https?://
@@ -48,7 +48,7 @@ jobs:
4848
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4949
id: lychee-check-manual
5050
if: github.event_name == 'workflow_dispatch'
51-
uses: lycheeverse/lychee-action@v2.7.0
51+
uses: lycheeverse/lychee-action@v2.8.0
5252
with:
5353
args: >
5454
--verbose --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/docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444

4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848

4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v3
50+
uses: docker/setup-buildx-action@v4
5151

5252
- name: Login to Azure (OIDC)
5353
if: ${{ (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo')) || (github.event_name == 'workflow_dispatch' && (github.ref_name == 'dependabotchanges'||github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo')) }}
@@ -86,7 +86,7 @@ jobs:
8686
8787
fi
8888
- name: Build and Push Docker Image for Frontend Server
89-
uses: docker/build-push-action@v6
89+
uses: docker/build-push-action@v7
9090
with:
9191
context: ./src/App
9292
file: ./src/App/WebApp.Dockerfile
@@ -96,7 +96,7 @@ jobs:
9696
${{ secrets.ACR_LOGIN_SERVER || 'acrlogin.azurecr.io' }}/content-gen-app:${{ steps.determine_tag.outputs.tagname }}_${{ steps.date.outputs.date }}_${{ github.run_number }}
9797
9898
- name: Build and Push Docker Image for Backend Server
99-
uses: docker/build-push-action@v6
99+
uses: docker/build-push-action@v7
100100
with:
101101
context: ./src/backend
102102
file: ./src/backend/ApiApp.Dockerfile

.github/workflows/job-docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "Generated unique Docker tag: $UNIQUE_TAG"
4747
4848
- name: Set up Docker Buildx
49-
uses: docker/setup-buildx-action@v3
49+
uses: docker/setup-buildx-action@v4
5050

5151
- name: Login to Azure (OIDC)
5252
uses: azure/login@v2
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Build and Push Docker Image for Backend Server
7676
id: build_push_backend
77-
uses: docker/build-push-action@v6
77+
uses: docker/build-push-action@v7
7878
env:
7979
DOCKER_BUILD_SUMMARY: false
8080
with:

.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/scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/stale-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
env:
6868
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969
- name: Upload CSV Report of Inactive Branches
70-
uses: actions/upload-artifact@v6
70+
uses: actions/upload-artifact@v7
7171
with:
7272
name: merged-branches-report
7373
path: merged_branches_report.csv

.github/workflows/test-automation-v2.yml

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

137137
- name: Upload test report
138138
id: upload_report
139-
uses: actions/upload-artifact@v6
139+
uses: actions/upload-artifact@v7
140140
if: always()
141141
with:
142142
name: test-report
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
azure-ai-projects==1.0.0b12
2-
azure-identity==1.20.0
3-
ansible-core~=2.17.0
1+
azure-ai-projects==2.0.0b4
2+
azure-identity==1.25.2
3+
ansible-core~=2.20.3

0 commit comments

Comments
 (0)