File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 with :
3030 path : vendor/llhttp
3131 - name : Restore node_modules cache
32- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
32+ uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3333 with :
3434 path : vendor/llhttp/.npm
3535 key : ubuntu-latest-node-${{ hashFiles('vendor/llhttp/**/package-lock.json') }}
Original file line number Diff line number Diff line change 3030 echo $env:PATH >> $env:GITHUB_PATH
3131
3232 - name : Setup Node.js
33- uses : actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3 .0
33+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
3434 with :
3535 node-version : 20.18.0
3636
4545
4646 # Skip macOS & Windows, cache there is slower
4747 - name : Restore node_modules cache for Linux
48- uses : actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
48+ uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4949 with :
5050 path : ~/.npm
5151 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Original file line number Diff line number Diff line change 4545
4646 # Initializes the CodeQL tools for scanning.
4747 - name : Initialize CodeQL
48- uses : github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5
48+ uses : github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v3.29.5
4949 with :
5050 languages : ${{ matrix.language }}
5151 # If you wish to specify custom queries, you can do so here or in a config file.
5555 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5656 # If this step fails, then you should remove it and run the build manually (see below)
5757 - name : Autobuild
58- uses : github/codeql-action/autobuild@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5
58+ uses : github/codeql-action/autobuild@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v3.29.5
5959
6060 # ℹ️ Command-line programs to run using the OS shell.
6161 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6868 # ./location_of_script_within_repo/buildscript.sh
6969
7070 - name : Perform CodeQL Analysis
71- uses : github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5
71+ uses : github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v3.29.5
7272 with :
7373 category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 3636 persist-credentials : false
3737
3838 - name : " Run analysis"
39- uses : ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
39+ uses : ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
4040 with :
4141 results_file : results.sarif
4242 results_format : sarif
@@ -58,14 +58,14 @@ jobs:
5858 # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5959 # format to the repository Actions tab.
6060 - name : " Upload artifact"
61- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
61+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6262 with :
6363 name : SARIF file
6464 path : results.sarif
6565 retention-days : 5
6666
6767 # Upload the results to GitHub's code scanning dashboard.
6868 - name : " Upload to code-scanning"
69- uses : github/codeql-action/upload-sarif@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5
69+ uses : github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v3.29.5
7070 with :
7171 sarif_file : results.sarif
Original file line number Diff line number Diff line change 1- FROM node:25-alpine@sha256:5209bcaca9836eb3448b650396213dbe9d9a34d31840c2ae1f206cb2986a8543
1+ FROM node:25-alpine@sha256:ad82ecad30371c43f4057aaa4800a8ed88f9446553a2d21323710c7b937177fc
22ARG UID=1000
33ARG GID=1000
44
Original file line number Diff line number Diff line change 1- This software is licensed under the MIT License.
1+ MIT License
22
3- Copyright Fedor Indutny, 2018.
3+ Copyright © 2018 Fedor Indutny
44
55Permission is hereby granted, free of charge, to any person obtaining a
66copy of this software and associated documentation files (the
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ release: clean generate
5454 cp -rf src/native/* .c release/src/
5555 cp -rf src/llhttp.gyp release/
5656 cp -rf src/common.gypi release/
57- cp -rf cmake/llhttp-config .cmake.in release/cmake
57+ cp -rf cmake/llhttpConfig .cmake.in release/cmake
5858 sed s/_RELEASE_/$(RELEASE ) / CMakeLists.txt > release/CMakeLists.txt
5959 cp -rf libllhttp.pc.in release/
6060 cp -rf README.md release/
@@ -76,7 +76,7 @@ postversion: release
7676 git push
7777 git checkout release --
7878 cp -rf release/* ./
79- rm -rf release
79+ rm -rf build cmake release
8080 git add include src * .gyp * .gypi CMakeLists.txt README.md LICENSE libllhttp.pc.in
8181 git commit -a -m " release: $( RELEASE) "
8282 git tag " release/v$( RELEASE) "
You can’t perform that action at this time.
0 commit comments