Skip to content

Commit ce1571c

Browse files
authored
Production Release (#810)
* Production Release Sprint 53 issues include: Dependabot Alert: tar-fs Vulnerable to Link Following and Path Traversal via Extracting a Crafted tar File #803 Dependabot Alert: axios Requests Vulnerable To Possible SSRF and Credential Leakage via Absolute URL #802 Dependabot Alert: Gunicorn HTTP Request/Response Smuggling vulnerability #788 UI: Add link to Program Website, Contacts and FAQ on Training Application #696 * Updated Node GitHub actions config as setup-node@v2 relies on deprecated version of setup-node@v2 which resulted in error in CI.
1 parent fc12b9a commit ce1571c

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

.github/workflows/frontend-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v3
2121
with:
22-
node-version: '18'
23-
cache: 'npm'
22+
node-version: 18.x
23+
cache: npm
2424
cache-dependency-path: training-front-end/package-lock.json
2525

2626
- name: install dependencies

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
redis==4.4.4
22
fastapi==0.109.1
33
uvicorn[standard]==0.23.2
4-
gunicorn==22.0.0
4+
gunicorn==23.0.0
55
pyjwt[crypto]==2.6.0
66
cfenv==0.5.3
77
SQLAlchemy==2.0.5.post1

training-front-end/package-lock.json

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

training-front-end/src/components/GSAHeader.astro

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,23 @@ import searchIcon from "../assets/images/usa-icons/search--white.svg"
7070
</li>
7171
</ul>
7272
<div class="usa-nav__secondary">
73+
<ul class="usa-nav__secondary-links">
74+
<li class="usa-nav__secondary-item">
75+
<a href="https://smartpay.gsa.gov/">
76+
Program
77+
</a>
78+
</li>
79+
<li class="usa-nav__secondary-item">
80+
<a href="https://smartpay.gsa.gov/contact/">
81+
Contact
82+
</a>
83+
</li>
84+
<li class="usa-nav__secondary-item">
85+
<a href="https://smartpay.gsa.gov/faq/">
86+
FAQs
87+
</a>
88+
</li>
89+
</ul>
7390
<section aria-label="Search component">
7491
<form class="usa-search usa-search--small" role="search" action="https://search.usa.gov/search" accept-charset="UTF-8" method="get">
7592
<input type="hidden" name="affiliate" id="affiliate" value="gsa_smartpay_training" autocomplete="off" />

0 commit comments

Comments
 (0)