Skip to content

Commit 2d24762

Browse files
build: bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b610e82 commit 2d24762

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ jobs:
308308
fi
309309
310310
- name: Checkout Code
311-
uses: actions/checkout@v4
311+
uses: actions/checkout@v6
312312

313313
- name: Login to Azure
314314
shell: bash

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
echo "✅ All input parameters validated successfully!"
187187
188188
- name: Checkout Code
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v6
190190

191191
- name: Configure Parameters Based on WAF Setting
192192
shell: bash

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
echo "✅ All input parameters validated successfully!"
190190
191191
- name: Checkout Code
192-
uses: actions/checkout@v4
192+
uses: actions/checkout@v6
193193

194194
- name: Configure Parameters Based on WAF Setting
195195
shell: bash

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
IMAGE_TAG: ${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}
2929
steps:
3030
- name: Checkout Code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Generate Unique Docker Image Tag
3434
id: generate_docker_tag

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
TEST_REPORT_URL: ${{ steps.upload_report.outputs.artifact-url }}
4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646

4747
- name: Set up Python
4848
uses: actions/setup-python@v6
@@ -126,7 +126,7 @@ jobs:
126126

127127
- name: Upload test report
128128
id: upload_report
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v6
130130
if: ${{ !cancelled() }}
131131
with:
132132

0 commit comments

Comments
 (0)