File tree Expand file tree Collapse file tree 18 files changed +798
-404
lines changed
Expand file tree Collapse file tree 18 files changed +798
-404
lines changed Original file line number Diff line number Diff line change 2727
2828 steps :
2929 - name : Checkout master branch
30- uses : actions/checkout@v5
30+ uses : actions/checkout@v6
3131 with :
3232 ref : master
3333 fetch-depth : 0 # Required to push to another branch
Original file line number Diff line number Diff line change 3333
3434 steps :
3535 - name : Checkout repository
36- uses : actions/checkout@v5
36+ uses : actions/checkout@v6
3737
3838 - name : Set up Node.js
3939 uses : actions/setup-node@v6
8080
8181 - name : Upload JSDoc results
8282 if : ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
83- uses : actions/upload-artifact@v4
83+ uses : actions/upload-artifact@v6
8484 with :
8585 name : jsdoc-lint-results
8686 path : jsdoc-lint-output.txt
9595 run : git archive --format=tar.gz --output=clean-source.tar.gz HEAD
9696
9797 - name : Upload source archive
98- uses : actions/upload-artifact@v5
98+ uses : actions/upload-artifact@v6
9999 with :
100100 name : clean-source
101101 path : clean-source.tar.gz
@@ -108,7 +108,7 @@ jobs:
108108
109109 steps :
110110 - name : Download clean source archive
111- uses : actions/download-artifact@v5
111+ uses : actions/download-artifact@v7
112112 with :
113113 name : clean-source
114114 path : ./
@@ -164,7 +164,7 @@ jobs:
164164
165165 steps :
166166 - name : Download clean source archive
167- uses : actions/download-artifact@v5
167+ uses : actions/download-artifact@v7
168168 with :
169169 name : clean-source
170170 path : ./
Original file line number Diff line number Diff line change 1818
1919 steps :
2020 - name : ' Checkout Repository'
21- uses : actions/checkout@v5
21+ uses : actions/checkout@v6
2222
2323 - name : ' Dependency Review'
2424 uses : actions/dependency-review-action@v4
Original file line number Diff line number Diff line change 3131
3232 steps :
3333 - name : Checkout Repository
34- uses : actions/checkout@v5
34+ uses : actions/checkout@v6
3535
3636 - name : Authenticate GitHub CLI
3737 run : gh auth status
Original file line number Diff line number Diff line change 2323
2424 steps :
2525 - name : Checkout repo
26- uses : actions/checkout@v5
26+ uses : actions/checkout@v6
2727
2828 - name : Set up Node.js
2929 uses : actions/setup-node@v6
Original file line number Diff line number Diff line change 2626
2727 steps :
2828 - name : Checkout repository
29- uses : actions/checkout@v5
29+ uses : actions/checkout@v6
3030
3131 - name : Log ENV_MODE
3232 run : ' echo "ENV_MODE is set to: $ENV_MODE"'
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109109 echo "✅ Report saved as probely-scan-coverage.csv"
110110
111111 - name : Upload report artifact
112- uses : actions/upload-artifact@v5
112+ uses : actions/upload-artifact@v6
113113 with :
114114 name : probely-scan-coverage
115115 path : probely-scan-coverage.csv
Original file line number Diff line number Diff line change 3131
3232 steps :
3333 - name : Checkout repository
34- uses : actions/checkout@v5
34+ uses : actions/checkout@v6
3535
3636 - name : Set up Node.js
3737 uses : actions/setup-node@v6
7979
8080 - name : Upload JSDoc results
8181 if : ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
82- uses : actions/upload-artifact@v4
82+ uses : actions/upload-artifact@v6
8383 with :
8484 name : jsdoc-lint-results
8585 path : jsdoc-lint-output.txt
9494 run : git archive --format=tar.gz --output=clean-source.tar.gz HEAD
9595
9696 - name : Upload source archive
97- uses : actions/upload-artifact@v5
97+ uses : actions/upload-artifact@v6
9898 with :
9999 name : clean-source
100100 path : clean-source.tar.gz
@@ -107,7 +107,7 @@ jobs:
107107
108108 steps :
109109 - name : Download clean source archive
110- uses : actions/download-artifact@v5
110+ uses : actions/download-artifact@v7
111111 with :
112112 name : clean-source
113113 path : ./
@@ -168,7 +168,7 @@ jobs:
168168
169169 steps :
170170 - name : Download clean source archive
171- uses : actions/download-artifact@v5
171+ uses : actions/download-artifact@v7
172172 with :
173173 name : clean-source
174174 path : ./
Original file line number Diff line number Diff line change 2727 # ---------------------------------------------------------------------
2828 # Checkout the full repo history (needed for Gitleaks to scan all commits)
2929 # ---------------------------------------------------------------------
30- - uses : actions/checkout@v5
30+ - uses : actions/checkout@v6
3131 with :
3232 fetch-depth : 0
3333
5050 # ---------------------------------------------------------------------
5151 - name : Upload Gitleaks Report
5252 if : always() && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
53- uses : actions/upload-artifact@v4
53+ uses : actions/upload-artifact@v6
5454 with :
5555 name : gitleaks-report
5656 path : gitleaks-report.json
Original file line number Diff line number Diff line change 4141
4242 steps :
4343 - name : Checkout repository
44- uses : actions/checkout@v5
44+ uses : actions/checkout@v6
4545
4646 - name : Set up Node.js
4747 uses : actions/setup-node@v6
8484
8585 - name : Upload JSDoc results
8686 if : ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
87- uses : actions/upload-artifact@v4
87+ uses : actions/upload-artifact@v6
8888 with :
8989 name : jsdoc-lint-results
9090 path : jsdoc-lint-output.txt
9999 run : git archive --format=tar.gz --output=clean-source.tar.gz HEAD
100100
101101 - name : Upload source archive
102- uses : actions/upload-artifact@v5
102+ uses : actions/upload-artifact@v6
103103 with :
104104 name : clean-source
105105 path : clean-source.tar.gz
@@ -112,7 +112,7 @@ jobs:
112112
113113 steps :
114114 - name : Download clean source archive
115- uses : actions/download-artifact@v5
115+ uses : actions/download-artifact@v7
116116 with :
117117 name : clean-source
118118 path : ./
@@ -168,7 +168,7 @@ jobs:
168168
169169 steps :
170170 - name : Download clean source archive
171- uses : actions/download-artifact@v5
171+ uses : actions/download-artifact@v7
172172 with :
173173 name : clean-source
174174 path : ./
You can’t perform that action at this time.
0 commit comments