Skip to content

Commit 730e37a

Browse files
build(deps): bump the github-actions group across 1 directory with 4 updates (#1512)
Bumps the github-actions group with 4 updates in the / directory: [tj-actions/changed-files](https://github.com/tj-actions/changed-files), [actions/upload-artifact](https://github.com/actions/upload-artifact), [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) and [actions/cache](https://github.com/actions/cache). Updates `tj-actions/changed-files` from 47.0.0 to 47.0.1 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@24d32ff...e002140) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `dawidd6/action-download-artifact` from 11 to 12 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v11...v12) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-version: 47.0.1 dependency-type: direct:production update-type: version-update:semver-patch 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 - dependency-name: dawidd6/action-download-artifact dependency-version: '12' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 33ef254 commit 730e37a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Get all changed webui files
4242
id: changed_webui_files
43-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
43+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1
4444
with:
4545
files: webui/**
4646

@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Get all changed server files
9595
id: changed_server_files
96-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
96+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1
9797
with:
9898
files: server/**
9999

@@ -147,7 +147,7 @@ jobs:
147147
run: echo ${{ github.event.number }} > PR_NUMBER.txt
148148

149149
- name: Archive PR number
150-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
150+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
151151
with:
152152
name: PR_NUMBER
153153
path: PR_NUMBER.txt

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run Playwright tests
2828
working-directory: ./webui
2929
run: yarn smoke-tests
30-
- uses: actions/upload-artifact@v5
30+
- uses: actions/upload-artifact@v6
3131
if: always()
3232
with:
3333
name: playwright-report

.github/workflows/sonar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: mkdir -p ${{ runner.temp }}/artifacts
1616
- name: Download PR number artifact
1717
if: github.event.workflow_run.event == 'pull_request'
18-
uses: dawidd6/action-download-artifact@v11
18+
uses: dawidd6/action-download-artifact@v12
1919
with:
2020
workflow: CI
2121
run_id: ${{ github.event.workflow_run.id }}
@@ -54,13 +54,13 @@ jobs:
5454
git checkout $HEAD_BRANCH
5555
git clean -ffdx && git reset --hard HEAD
5656
- name: Cache SonarCloud packages
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ~/.sonar/cache
6060
key: ${{ runner.os }}-sonar
6161
restore-keys: ${{ runner.os }}-sonar
6262
- name: Cache Gradle packages
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
with:
6565
path: ~/.gradle/caches
6666
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

0 commit comments

Comments
 (0)