File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ updates:
1212 - package-ecosystem : github-actions
1313 directory : /
1414 schedule :
15- interval : daily
15+ interval : monthly
1616 allow :
1717 # Allow both direct and indirect updates for all packages
1818 - dependency-type : " all"
@@ -27,7 +27,7 @@ updates:
2727 - package-ecosystem : bundler
2828 directory : /
2929 schedule :
30- interval : daily
30+ interval : monthly
3131 allow :
3232 # Allow both direct and indirect updates for all packages
3333 - dependency-type : " all"
@@ -42,7 +42,7 @@ updates:
4242 - package-ecosystem : npm
4343 directory : /
4444 schedule :
45- interval : daily
45+ interval : monthly
4646 allow :
4747 # Allow both direct and indirect updates for all packages
4848 - dependency-type : " all"
@@ -57,7 +57,7 @@ updates:
5757 - package-ecosystem : pip
5858 directory : /
5959 schedule :
60- interval : daily
60+ interval : monthly
6161 allow :
6262 # Allow both direct and indirect updates for all packages
6363 - dependency-type : " all"
Original file line number Diff line number Diff line change 7171
7272 # Initializes the CodeQL tools for scanning.
7373 - name : Initialize CodeQL
74- uses : github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
74+ uses : github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
7575 with :
7676 languages : ${{ matrix.language }}
7777 # If you wish to specify custom queries, you can do so here or in a config file.
8181 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
8282 # If this step fails, then you should remove it and run the build manually (see below)
8383 - name : Autobuild
84- uses : github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
84+ uses : github/codeql-action/autobuild@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
8585
8686 # ℹ️ Command-line programs to run using the OS shell.
8787 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
9494 # ./location_of_script_within_repo/buildscript.sh
9595
9696 - name : Perform CodeQL Analysis
97- uses : github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
97+ uses : github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
9898 with :
9999 category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 7575
7676 # Step to upload results to the Security tab
7777 - name : Upload results to Security tab
78- uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v2.27.0
78+ uses : github/codeql-action/upload-sarif@28deaeda66b76a05916b6923827895f2b14ab387 # v2.27.0
7979 with :
8080 sarif_file : ${{ steps.msdo.outputs.sarifFile }}
Original file line number Diff line number Diff line change 5353 uses : microsoft/DevSkim-Action@a6b6966a33b497cd3ae2ebc406edf8f4cc2feec6 # v1.0.15
5454
5555 - name : Upload DevSkim scan results to GitHub Security tab
56- uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
56+ uses : github/codeql-action/upload-sarif@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
5757 with :
5858 sarif_file : devskim-results.sarif
Original file line number Diff line number Diff line change 6363 continue-on-error : true
6464
6565 - name : Upload analysis results to GitHub
66- uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v2.27.0
66+ uses : github/codeql-action/upload-sarif@28deaeda66b76a05916b6923827895f2b14ab387 # v2.27.0
6767 with :
6868 sarif_file : eslint-results.sarif
6969 wait-for-processing : true
Original file line number Diff line number Diff line change 3434 fi
3535
3636 - name : Set up Python
37- uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5 .0
37+ uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
3838 with :
3939 python-version : " 3.x"
4040
Original file line number Diff line number Diff line change 1+ # Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+ name : Deploy Jekyll with GitHub Pages dependencies preinstalled
3+
4+ on :
5+ # Runs on pushes targeting the default branch
6+ push :
7+ branches : ["main"]
8+
9+ # Allows you to run this workflow manually from the Actions tab
10+ workflow_dispatch :
11+
12+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+ permissions :
14+ contents : read
15+ pages : write
16+ id-token : write
17+
18+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+ concurrency :
21+ group : " pages"
22+ cancel-in-progress : false
23+
24+ jobs :
25+ # Build job
26+ build :
27+ runs-on : ubuntu-latest
28+ steps :
29+ - name : Harden the runner (Audit all outbound calls)
30+ uses : step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
31+ with :
32+ egress-policy : audit
33+
34+ - name : Checkout
35+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36+ - name : Setup Pages
37+ uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
38+ - name : Build with Jekyll
39+ uses : actions/jekyll-build-pages@44a6e6beabd48582f863aeeb6cb2151cc1716697 # v1.0.13
40+ with :
41+ source : ./
42+ destination : ./_site
43+ - name : Upload artifact
44+ uses : actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
45+
46+ # Deployment job
47+ deploy :
48+ environment :
49+ name : github-pages
50+ url : ${{ steps.deployment.outputs.page_url }}
51+ runs-on : ubuntu-latest
52+ needs : build
53+ steps :
54+ - name : Harden the runner (Audit all outbound calls)
55+ uses : step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
56+ with :
57+ egress-policy : audit
58+
59+ - name : Deploy to GitHub Pages
60+ id : deployment
61+ uses : actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
Original file line number Diff line number Diff line change 5252
5353 # Upload results to the Security tab
5454 - name : Upload OSSAR results
55- uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
55+ uses : github/codeql-action/upload-sarif@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
5656 with :
5757 sarif_file : ${{ steps.ossar.outputs.sarifFile }}
Original file line number Diff line number Diff line change @@ -101,6 +101,6 @@ jobs:
101101
102102 # Upload the results to GitHub's code scanning dashboard.
103103 - name : " Upload to code-scanning"
104- uses : github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v2.27.0
104+ uses : github/codeql-action/upload-sarif@28deaeda66b76a05916b6923827895f2b14ab387 # v2.27.0
105105 with :
106106 sarif_file : results.sarif
Original file line number Diff line number Diff line change 4141 cgi (0.4.2 )
4242 coderay (1.1.3 )
4343 concurrent-ruby (1.3.5 )
44- connection_pool (2.5.1 )
44+ connection_pool (2.5.3 )
4545 crack (1.0.0 )
4646 bigdecimal
4747 rexml
105105 etc (1.4.5 )
106106 ethon (0.16.0 )
107107 ffi (>= 1.15.0 )
108- faraday (2.13.0 )
108+ faraday (2.13.1 )
109109 faraday-net_http (>= 2.0 , < 3.5 )
110110 json
111111 logger
114114 fcntl (1.2.0 )
115115 ffi (1.17.2-x64-mingw-ucrt )
116116 ffi (1.17.2-x86_64-linux-gnu )
117- fiddle (1.1.6 )
117+ fiddle (1.1.8 )
118118 fileutils (1.7.3 )
119119 find (0.2.0 )
120120 forwardable (1.3.3 )
@@ -150,15 +150,15 @@ GEM
150150 method_source (1.1.0 )
151151 mini_mime (1.1.5 )
152152 minitest (5.25.5 )
153- multi_xml (0.7.1 )
153+ multi_xml (0.7.2 )
154154 bigdecimal (~> 3.1 )
155155 mutex_m (0.3.0 )
156156 net-ftp (0.3.8 )
157157 net-protocol
158158 time
159159 net-http (0.6.0 )
160160 uri
161- net-imap (0.5.6 )
161+ net-imap (0.5.8 )
162162 date
163163 net-protocol
164164 net-pop (0.1.2 )
206206 psych (5.2.3 )
207207 date
208208 stringio
209- public_suffix (6.0.1 )
209+ public_suffix (6.0.2 )
210210 racc (1.8.1 )
211211 rails-dom-testing (2.2.0 )
212212 activesupport (>= 5.0.0 )
@@ -249,15 +249,15 @@ GEM
249249 rspec-mocks (~> 3.13.0 )
250250 rspec-core (3.13.3 )
251251 rspec-support (~> 3.13.0 )
252- rspec-expectations (3.13.3 )
252+ rspec-expectations (3.13.4 )
253253 diff-lcs (>= 1.2.0 , < 2.0 )
254254 rspec-support (~> 3.13.0 )
255- rspec-mocks (3.13.2 )
255+ rspec-mocks (3.13.3 )
256256 diff-lcs (>= 1.2.0 , < 2.0 )
257257 rspec-support (~> 3.13.0 )
258258 rspec-retry (0.6.2 )
259259 rspec-core (> 3.3 )
260- rspec-support (3.13.2 )
260+ rspec-support (3.13.3 )
261261 rss (0.3.1 )
262262 rexml
263263 rubocop (0.7.2 )
285285 singleton (0.3.0 )
286286 smart_properties (1.17.0 )
287287 stringio (3.1.7 )
288- strscan (3.1.3 )
288+ strscan (3.1.4 )
289289 syntax_suggest (2.0.2 )
290290 tempfile (0.3.1 )
291291 terminal-table (1.6.0 )
You can’t perform that action at this time.
0 commit comments