Skip to content

Commit 027026e

Browse files
ci: bump actions/upload-artifact from 6 to 7 (#49)
* ci: bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update deny.toml to allow wildcard paths - Enabled `allow-wildcard-paths` to refine linter configuration while retaining denial for other wildcard usage. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Korrison <thomas_korrison@hotmail.com>
1 parent 36dbc09 commit 027026e

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
fi
200200
201201
- name: Upload benchmark artifacts
202-
uses: actions/upload-artifact@v6
202+
uses: actions/upload-artifact@v7
203203
if: always()
204204
with:
205205
name: benchmark-results-${{ github.sha }}

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
125125
- name: Upload crash artifacts
126126
if: steps.check_crashes.outputs.crashes_found == 'true'
127-
uses: actions/upload-artifact@v6
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: fuzz-crashes-${{ matrix.target }}-${{ github.sha }}
130130
path: fuzz/artifacts/${{ matrix.target }}/
@@ -236,7 +236,7 @@ jobs:
236236
done
237237
238238
- name: Upload coverage artifacts
239-
uses: actions/upload-artifact@v6
239+
uses: actions/upload-artifact@v7
240240
with:
241241
name: fuzz-coverage-${{ github.sha }}
242242
path: fuzz/coverage/

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ ignore = []
3636
multiple-versions = "deny"
3737
wildcards = "deny"
3838
highlight = "all"
39+
allow-wildcard-paths = true
3940
workspace-default-features = "allow"
4041
external-default-features = "allow"
4142
allow = []

0 commit comments

Comments
 (0)