Merge pull request #1994 from liblouis/dependabot/github_actions/actions/upload-artifact-7.0.1
Bump actions/upload-artifact from 7.0.0 to 7.0.1
diff --git a/.github/workflows/check-table-license.yml b/.github/workflows/check-table-license.yml
index 9e7119f..88e468e 100644
--- a/.github/workflows/check-table-license.yml
+++ b/.github/workflows/check-table-license.yml
@@ -35,7 +35,7 @@
test -z "$(licensecheck --check='\.(ctb|utb|cti|uti|dis)' --deb-fmt --machine tables/* | grep -Ev '(LGPL-2.1+|LGPL-3+)' | tee unknown_licenses.txt)"
- name: Store the list of files with unknown licenses
if: ${{ failure() }}
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: unknown_licenses.txt
path: unknown_licenses.txt
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml
index c696658..77c8745 100644
--- a/.github/workflows/cifuzz.yml
+++ b/.github/workflows/cifuzz.yml
@@ -49,7 +49,7 @@
fuzz-seconds: 300
language: c
- name: Upload Crash
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml
index 72f9519..103bf46 100644
--- a/.github/workflows/emscripten.yml
+++ b/.github/workflows/emscripten.yml
@@ -52,7 +52,7 @@
# cd ..
- name: Upload the release assets
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: build-no-tables-utf32.js
path: ./out/build-no-tables-utf32.js
diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml
index b55e5c1..195c493 100644
--- a/.github/workflows/fuzzing.yml
+++ b/.github/workflows/fuzzing.yml
@@ -326,7 +326,7 @@
run: mkdir tests/fuzzing/CORPUS ; FUZZ_TABLE=tables/${{ matrix.table }} tests/fuzzing/fuzz_translate -seed=1234 -runs=100000 -max_len=10000 tests/fuzzing/CORPUS
- name: Store the crash POC
if: ${{ failure() }}
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: crash-${{ matrix.ucs }}-${{ matrix.table }}.1
path: crash-* timeout-*
@@ -334,7 +334,7 @@
run: cp tables/${{ matrix.table }} tests/fuzzing/CORPUS/ ; FUZZ_TABLE=tables/${{ matrix.table }} tests/fuzzing/fuzz_translate -seed=1234 -runs=30000 -max_len=10000 tests/fuzzing/CORPUS
- name: Store the crash POC
if: ${{ failure() }}
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: crash-${{ matrix.ucs }}-${{ matrix.table }}.2
path: crash-* timeout-*
diff --git a/.github/workflows/macro.yml b/.github/workflows/macro.yml
index 74fa73d..ac0ced1 100644
--- a/.github/workflows/macro.yml
+++ b/.github/workflows/macro.yml
@@ -36,7 +36,7 @@
run: make check
- name: Store the test log
if: ${{ always() }} # store the test log even if the tests failed
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-suite-macro.log
path: tests/test-suite.log
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c19d3ca..7c9b598 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -43,7 +43,7 @@
run: make check
- name: Store the test suite log
if: ${{ always() }} # store the test suite log even if the tests failed
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-suite-${{ matrix.ucs }}.log
path: tests/test-suite.log
diff --git a/.github/workflows/metadata.yml b/.github/workflows/metadata.yml
index 7b7f399..35a1154 100644
--- a/.github/workflows/metadata.yml
+++ b/.github/workflows/metadata.yml
@@ -43,7 +43,7 @@
run: make -C extra/generate-display-names
- name: Store the log
if: ${{ failure() }}
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: generate-display-names.log
path: extra/generate-display-names/generate.log
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index ba04d96..2622c4d 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -55,7 +55,7 @@
run: make check WINE=wine64
- name: Store the test suite log
if: ${{ failure() }}
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-suite-w64.log
path: tests/test-suite.log
@@ -65,7 +65,7 @@
- name: Zip up the build artifacts
run: ( cd ${{ env.PREFIX }}; zip -r liblouis.zip * )
- name: Archive the build artifacts
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: liblouis-w64.zip
path: ${{ env.PREFIX }}/liblouis.zip
@@ -144,7 +144,7 @@
# run: make check WINE=wine
# - name: Store the test suite log
# if: ${{ failure() }}
- # uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ # uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
# with:
# name: test-suite-w32.log
# path: tests/test-suite.log
@@ -154,7 +154,7 @@
# - name: Zip up the build artifacts
# run: ( cd ${{ env.PREFIX }}; zip -r liblouis.zip * )
# - name: Archive the build artifacts
- # uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ # uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
# with:
# name: liblouis-w32.zip
# path: ${{ env.PREFIX }}/liblouis.zip
diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml
index 899111c..95398ed 100644
--- a/.github/workflows/sanitizer.yml
+++ b/.github/workflows/sanitizer.yml
@@ -53,7 +53,7 @@
run: ${{ matrix.options }} make check
- name: Store the test suite log
if: ${{ always() }} # store the test suite log even if the tests failed
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: test-suite-${{ matrix.ucs }}-${{ matrix.sanitizer }}.log
path: tests/test-suite.log
diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml
index 08d452e..ee31278 100644
--- a/.github/workflows/scorecards.yml
+++ b/.github/workflows/scorecards.yml
@@ -60,7 +60,7 @@
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: SARIF file
path: results.sarif