Skip to content

Commit 3421fa6

Browse files
build(deps): bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [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 e1acfd4 commit 3421fa6

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 }}
@@ -113,29 +113,29 @@ jobs:
113113
run: ./gradlew buildAll
114114

115115
- name: 上傳 Release Artifact
116-
uses: actions/upload-artifact@v5
116+
uses: actions/upload-artifact@v6
117117
with:
118118
name: npatch-release-${{ env.commit }}
119119
path: out/release/*
120120
retention-days: 14
121121

122122
- name: 上傳 Debug Artifact
123-
uses: actions/upload-artifact@v5
123+
uses: actions/upload-artifact@v6
124124
with:
125125
name: npatch-debug-${{ env.commit }}
126126
path: out/debug/*
127127
retention-days: 7
128128

129129
- name: 上傳 mappings
130-
uses: actions/upload-artifact@v5
130+
uses: actions/upload-artifact@v6
131131
with:
132132
name: mappings-${{ env.commit }}
133133
path: |
134134
patch-loader/build/outputs/mapping
135135
manager/build/outputs/mapping
136136
137137
- name: 上傳 symbols
138-
uses: actions/upload-artifact@v5
138+
uses: actions/upload-artifact@v6
139139
with:
140140
name: symbols-${{ env.commit }}
141141
path: |

0 commit comments

Comments
 (0)