Skip to content

Commit d2609ab

Browse files
authored
Merge pull request liblouis#1716 from liblouis/dependabot/github_actions/actions/upload-artifact-4.6.0
build(deps): bump actions/upload-artifact from 4.4.3 to 4.6.0
2 parents d040b00 + 1423699 commit d2609ab

10 files changed

+14
-14
lines changed

.github/workflows/check-table-license.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
test -z "$(licensecheck --check='\.(ctb|utb|cti|uti|dis)' --deb-fmt --machine tables/* | grep -Ev '(LGPL-2.1+|LGPL-3+)' | tee unknown_licenses.txt)"
3636
- name: Store the list of files with unknown licenses
3737
if: ${{ failure() }}
38-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
38+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
3939
with:
4040
name: unknown_licenses.txt
4141
path: unknown_licenses.txt

.github/workflows/cifuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fuzz-seconds: 300
5050
language: c
5151
- name: Upload Crash
52-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
52+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
5353
if: failure() && steps.build.outcome == 'success'
5454
with:
5555
name: artifacts

.github/workflows/emscripten.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# cd ..
5353

5454
- name: Upload the release assets
55-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
55+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
5656
with:
5757
name: build-no-tables-utf32.js
5858
path: ./out/build-no-tables-utf32.js

.github/workflows/fuzzing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ jobs:
7575
run: mkdir tests/fuzzing/CORPUS ; FUZZ_TABLE=tables/${{ matrix.table }} tests/fuzzing/fuzz_translate -seed=1234 -runs=100000 -max_len=10000 tests/fuzzing/CORPUS
7676
- name: Store the crash POC
7777
if: ${{ failure() }}
78-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
78+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
7979
with:
8080
name: crash-${{ matrix.ucs }}-${{ matrix.table }}.1
8181
path: crash-* timeout-*
8282
- name: Fuzz function lou_translateString() with language-specific input
8383
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
8484
- name: Store the crash POC
8585
if: ${{ failure() }}
86-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
86+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
8787
with:
8888
name: crash-${{ matrix.ucs }}-${{ matrix.table }}.2
8989
path: crash-* timeout-*

.github/workflows/macro.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: make check
3737
- name: Store the test log
3838
if: ${{ always() }} # store the test log even if the tests failed
39-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
39+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
4040
with:
4141
name: test-suite-macro.log
4242
path: tests/test-suite.log

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: make check
4444
- name: Store the test suite log
4545
if: ${{ always() }} # store the test suite log even if the tests failed
46-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
46+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
4747
with:
4848
name: test-suite-${{ matrix.ucs }}.log
4949
path: tests/test-suite.log

.github/workflows/metadata.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: make -C extra/generate-display-names
4444
- name: Store the log
4545
if: ${{ failure() }}
46-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
46+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
4747
with:
4848
name: generate-display-names.log
4949
path: extra/generate-display-names/generate.log

.github/workflows/mingw.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: make check WINE=wine64
5656
- name: Store the test suite log
5757
if: ${{ failure() }}
58-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
58+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
5959
with:
6060
name: test-suite-w64.log
6161
path: tests/test-suite.log
@@ -65,7 +65,7 @@ jobs:
6565
- name: Zip up the build artifacts
6666
run: ( cd ${{ env.PREFIX }}; zip -r liblouis.zip * )
6767
- name: Archive the build artifacts
68-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
68+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
6969
with:
7070
name: liblouis-w64.zip
7171
path: ${{ env.PREFIX }}/liblouis.zip
@@ -144,7 +144,7 @@ jobs:
144144
# run: make check WINE=wine
145145
# - name: Store the test suite log
146146
# if: ${{ failure() }}
147-
# uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
147+
# uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
148148
# with:
149149
# name: test-suite-w32.log
150150
# path: tests/test-suite.log
@@ -154,7 +154,7 @@ jobs:
154154
# - name: Zip up the build artifacts
155155
# run: ( cd ${{ env.PREFIX }}; zip -r liblouis.zip * )
156156
# - name: Archive the build artifacts
157-
# uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
157+
# uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
158158
# with:
159159
# name: liblouis-w32.zip
160160
# path: ${{ env.PREFIX }}/liblouis.zip

.github/workflows/sanitizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: ${{ matrix.options }} make check
5454
- name: Store the test suite log
5555
if: ${{ always() }} # store the test suite log even if the tests failed
56-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
56+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
5757
with:
5858
name: test-suite-${{ matrix.ucs }}-${{ matrix.sanitizer }}.log
5959
path: tests/test-suite.log

.github/workflows/scorecards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6161
# format to the repository Actions tab.
6262
- name: "Upload artifact"
63-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
63+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
6464
with:
6565
name: SARIF file
6666
path: results.sarif

0 commit comments

Comments
 (0)