Skip to content

Commit a93ae20

Browse files
committed
tools: fix failing GHA workflows
1 parent 9289694 commit a93ae20

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/build-tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
mkdir tarballs
5858
mv *.tar.gz tarballs
5959
- name: Upload tarball artifact
60-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
60+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
6161
with:
6262
name: tarballs
6363
path: tarballs

.github/workflows/daily-wpt-fyi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
run: cp wptreport.json wptreport-${{ steps.setup-node.outputs.node-version }}.json
122122
- name: Upload GitHub Actions artifact
123123
if: ${{ env.WPT_REPORT != '' }}
124-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
124+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
125125
with:
126126
path: out/wpt/wptreport-*.json
127127
name: WPT Reports

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: npx envinfo
3636
- name: Build
3737
run: NODE=$(command -v node) make doc-only
38-
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
38+
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
3939
with:
4040
name: docs
4141
path: out/doc

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6666
# format to the repository Actions tab.
6767
- name: Upload artifact
68-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
68+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
6969
with:
7070
name: SARIF file
7171
path: results.sarif

tools/dep_updaters/update-openssl.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ main() {
9797
* )
9898
echo "unknown command: $1"
9999
help 1
100+
101+
# shellcheck disable=SC2317
100102
exit 1
101103
;;
102104
esac

0 commit comments

Comments
 (0)