Skip to content

Commit 57afd4e

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [peter-evans/repository-dispatch](https://github.com/peter-evans/repository-dispatch) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `peter-evans/repository-dispatch` from 3 to 4 - [Release notes](https://github.com/peter-evans/repository-dispatch/releases) - [Commits](peter-evans/repository-dispatch@v3...v4) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/repository-dispatch dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a0f0c08 commit 57afd4e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
run: cargo build --release
4949

5050
- name: Upload artifact (windows)
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v5
5252
if: startsWith(matrix.os, 'windows')
5353
with:
5454
name: artifact-windows
5555
path: ./target/release/dfint-installer.exe
5656

5757
- name: Upload artifact (linux)
58-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@v5
5959
if: startsWith(matrix.os, 'ubuntu')
6060
with:
6161
name: artifact-linux

.github/workflows/on-release-published.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Notify dfint.github.io repo about the release
25-
uses: peter-evans/repository-dispatch@v3
25+
uses: peter-evans/repository-dispatch@v4
2626
with:
2727
token: ${{ secrets.REPOSITORY_DISPATCH_PAT }}
2828
repository: dfint/dfint.github.io

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v5
2525

2626
- name: Restore files
27-
uses: actions/download-artifact@v5
27+
uses: actions/download-artifact@v6
2828
id: download
2929
with:
3030
pattern: artifact-*

0 commit comments

Comments
 (0)