Skip to content

Commit acba187

Browse files
Merge branch 'main' into trivy
2 parents befcbf6 + 583d274 commit acba187

8 files changed

+87
-350
lines changed

.github/workflows/api-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# if: failure()
3131
# uses: jwalton/gh-docker-logs@v2
3232
- name: Upload Postman Results
33-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
33+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
3434
with:
3535
name: rps-api
3636
path: /home/runner/work/mps/mps/src/test/results

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fetch-depth: 0
1919
- run: docker run -v $PWD:/workdir quay.io/git-chglog/git-chglog:0.15.1 --next-tag $(node --eval="process.stdout.write(require('./package.json').version)") --output CHANGELOG.md
2020
- name: GitHub Upload Release Artifacts
21-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
21+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
2222
with:
2323
name: CHANGELOG.md
2424
path: |

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
template: report
8686
token: ${{ secrets.SECURITY_TOKEN }}
8787
- name: GitHub Upload Release Artifacts
88-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
88+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
8989
continue-on-error: true
9090
with:
9191
name: report

.github/workflows/node.js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
if: ${{ matrix.node-version == '18.x' }}
4343
- run: mv junit.xml rps-unit-${{ matrix.node-version }}.xml
4444
- name: Upload JEST Results
45-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
45+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
4646
with:
4747
name: rps-unit-${{ matrix.node-version }}
4848
path: rps-unit-${{ matrix.node-version }}.xml

.github/workflows/scorecard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
67+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
6868
with:
6969
name: SARIF file
7070
path: results.sarif

.github/workflows/semantic.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ jobs:
1212
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
1313
with:
1414
egress-policy: audit
15-
15+
- name: Setup Node.js 20.x
16+
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
17+
with:
18+
node-version: 20.x
1619
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1720
with:
1821
fetch-depth: 0
1922
- uses: wagoid/commitlint-github-action@5ce82f5d814d4010519d15f0552aec4f17a1e1fe # v5.4.5
2023
with:
2124
configFile: .github/commitlint.config.js
2225
- name: Install Dependencies
23-
run: npm install @commitlint/config-conventional
26+
run: npm install @commitlint/config-conventional@18.5
2427
- uses: JulienKode/pull-request-name-linter-action@8c05fb989d9f156ce61e33754f9802c9d3cffa58 # v0.5.0
2528
with:
26-
configuration-path: ./.github/commitlint.config.js
29+
configuration-path: ./.github/commitlint.config.js

0 commit comments

Comments
 (0)