Skip to content

Commit 744e7b7

Browse files
build(deps): bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ff76409 commit 744e7b7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818

1919
steps:
2020
- name: 檢出程式碼
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
ref: ${{ github.sha }}
2424
submodules: 'recursive'
2525
fetch-depth: 0
2626

2727
- name: 設定快取
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: ~/.ccache
3131
key: ${{ runner.os }}-ccache-${{ github.sha }}
@@ -117,29 +117,29 @@ jobs:
117117
run: ./gradlew buildAll
118118

119119
- name: 上傳 Release Artifact
120-
uses: actions/upload-artifact@v5
120+
uses: actions/upload-artifact@v6
121121
with:
122122
name: npatch-release-${{ env.commit }}
123123
path: out/release/*
124124
retention-days: 14
125125

126126
- name: 上傳 Debug Artifact
127-
uses: actions/upload-artifact@v5
127+
uses: actions/upload-artifact@v6
128128
with:
129129
name: npatch-debug-${{ env.commit }}
130130
path: out/debug/*
131131
retention-days: 7
132132

133133
- name: 上傳 mappings
134-
uses: actions/upload-artifact@v5
134+
uses: actions/upload-artifact@v6
135135
with:
136136
name: mappings-${{ env.commit }}
137137
path: |
138138
patch-loader/build/outputs/mapping
139139
manager/build/outputs/mapping
140140
141141
- name: 上傳 symbols
142-
uses: actions/upload-artifact@v5
142+
uses: actions/upload-artifact@v6
143143
with:
144144
name: symbols-${{ env.commit }}
145145
path: |

0 commit comments

Comments
 (0)