Skip to content

Commit fa2a34a

Browse files
authored
Merge branch 'master' into copilot/improve-vendor-ci-cd-messaging
2 parents e6fea0b + 9e6e148 commit fa2a34a

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "github-actions" # See documentation for possible values
3+
# Enable version updates for GitHub Actions
4+
- package-ecosystem: "github-actions"
95
directory: "/" # Location of package manifests
106
schedule:
117
interval: "weekly"
8+
labels:
9+
- "👆 Dependencies"
10+
- "🔄️ GitHub Actions"

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,26 @@ jobs:
9797
echo "" >> $env:GITHUB_STEP_SUMMARY
9898
9999
- name: Upload artifact (cmder.zip)
100-
uses: actions/upload-artifact@v5
100+
uses: actions/upload-artifact@v6
101101
with:
102102
path: build/cmder.zip
103103
name: cmder.zip
104104
if-no-files-found: error
105105

106106
- name: Upload artifact (cmder.7z)
107-
uses: actions/upload-artifact@v5
107+
uses: actions/upload-artifact@v6
108108
with:
109109
path: build/cmder.7z
110110
name: cmder.7z
111111

112112
- name: Upload artifact (cmder_mini.zip)
113-
uses: actions/upload-artifact@v5
113+
uses: actions/upload-artifact@v6
114114
with:
115115
path: build/cmder_mini.zip
116116
name: cmder_mini.zip
117117

118118
- name: Upload artifact (hashes.txt)
119-
uses: actions/upload-artifact@v5
119+
uses: actions/upload-artifact@v6
120120
with:
121121
path: build/hashes.txt
122122
name: hashes.txt

.github/workflows/vendor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
echo "AUTO_MERGED=false" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
216216
}
217217
218-
- uses: peter-evans/create-pull-request@v7
218+
- uses: peter-evans/create-pull-request@v8
219219
if: env.COUNT_UPDATED > 0 && (env.HAS_BREAKING_CHANGES == 'True' || env.AUTO_MERGED == 'false')
220220
with:
221221
title: ${{ env.COUNT_UPDATED == '1' && format('⬆️ Update {0}', env.LIST_UPDATED) || format('⬆️ Update {0} vendored dependencies', env.COUNT_UPDATED) }}

0 commit comments

Comments
 (0)