Skip to content

Commit

Permalink
Merge branch 'master' of github.com:secure-systems-lab/ssl-site
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinCappos committed Jul 13, 2024
2 parents 54e131a + c2b5427 commit 3d42be4
Show file tree
Hide file tree
Showing 6 changed files with 108 additions and 8 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages

on:
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v1

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
20 changes: 20 additions & 0 deletions _data/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,16 @@ projects:
- *justin_cappos
tags:
- *security
- &jot
name: "Just One Turtle"
anchor: "just-one-turtle"
status: *starting
description: "The 2020 SolarWinds attack highlighted severe supply chain risks in software development. The attackers compromised SolarWinds’ Orion software update process, leading to widespread and complex cyberattacks on numerous federal institutions and companies, including Microsoft. This incident underscores the urgent need for secure and isolated operational environments. The “Just One Turtle” plan aims to enhance software resilience by leveraging the Lind sandbox and Intel SGX to create highly secure computing environments for critical operations."
people:
- *yuchen_zhang
- *justin_cappos
tags:
- *security

- &taf
name: "The Archive Framework (TAF)"
Expand Down Expand Up @@ -1257,6 +1267,7 @@ projects:
- *uptane
- *in-toto
- *gittuf
- *jot
- *taf
- *cachecash
- *lind
Expand Down Expand Up @@ -2993,6 +3004,15 @@ press:

presses:

- title: "Securing Git repositories with gittuf"
link: "https://lwn.net/Articles/972467/"
anchor: lwngittuf
type: article
projects:
- *gittuf
source: "LWN.net"
date: "May 8, 2024"

- title: "Introducing gittuf: A Security Layer for Git Repositories"
link: "https://openssf.org/blog/2024/01/18/introducing-gittuf-a-security-layer-for-git-repositories/"
anchor: openssfgittuf
Expand Down
14 changes: 7 additions & 7 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<h5 class="logo"><a href="{{ site.baseurl }}">Secure Systems Lab</a></h5>
<nav class="main">
<ul>
<li><a href="{{ site.baseurl }}overview.html" {% if page.subnav=="overview" %} class="active" {% endif %} >Overview</a></li>
<li><a href="{{ site.baseurl }}projects.html" {% if page.subnav=="projects" %} class="active" {% endif %} >Projects</a></li>
<li><a href="{{ site.baseurl }}people.html" {% if page.subnav=="people" %} class="active" {% endif %} >People</a></li>
<li><a href="{{ site.baseurl }}overview" {% if page.subnav=="overview" %} class="active" {% endif %} >Overview</a></li>
<li><a href="{{ site.baseurl }}projects" {% if page.subnav=="projects" %} class="active" {% endif %} >Projects</a></li>
<li><a href="{{ site.baseurl }}people" {% if page.subnav=="people" %} class="active" {% endif %} >People</a></li>
</ul>
</nav>
<div class="nav-slider">
Expand All @@ -23,10 +23,10 @@ <h5 class="logo"><a href="{{ site.baseurl }}">Secure Systems Lab</a></h5>
</div>
<nav class="subnav">
<ul>
<li><a href="{{ site.baseurl }}publications.html" {% if page.subnav=="publications" %} class="active" {% endif %}>Publications</a></li>
<li><a href="{{ site.baseurl }}press.html" {% if page.subnav=="press" %} class="active" {% endif %}>Press</a></li>
<li><a href="{{ site.baseurl }}blog.html" {% if page.subnav=="blog" %} class="active" {% endif %}>Blog</a></li>
<li><a href="{{ site.baseurl }}collaborate.html" {% if page.subnav=="collaborate" %} class="active" {% endif %}>Collaborate</a></li>
<li><a href="{{ site.baseurl }}publications" {% if page.subnav=="publications" %} class="active" {% endif %}>Publications</a></li>
<li><a href="{{ site.baseurl }}press" {% if page.subnav=="press" %} class="active" {% endif %}>Press</a></li>
<li><a href="{{ site.baseurl }}blog" {% if page.subnav=="blog" %} class="active" {% endif %}>Blog</a></li>
<li><a href="{{ site.baseurl }}collaborate" {% if page.subnav=="collaborate" %} class="active" {% endif %}>Collaborate</a></li>
</ul>
</nav>
</div>
Expand Down
9 changes: 9 additions & 0 deletions _posts/2024-07-01-contributions-to-git.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: article
title: "Our Contributions to Git"
subnav: blog
comments: false
author: '<a href="/people#justin_cappos">Justin Cappos</a>'
---

Content coming soon.
9 changes: 9 additions & 0 deletions _posts/2024-07-01-contributions-to-reproducible-builds.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: article
title: "Our Contributions to Reproducible Builds"
subnav: blog
comments: false
author: '<a href="/people#justin_cappos">Justin Cappos</a>'
---

Content coming soon.
2 changes: 1 addition & 1 deletion personalpages/jcappos/press.htm
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ <h3>Quick links</h3>

<p><strong>"Securing Git repositories with gittuf"</strong>
<a href="https://lwn.net/SubscriberLink/972467/b8382b13424b808b/">Article</a>
(press coverage related to <a href="https://gittuf.dev/">TUF</a>) </br>
(press coverage related to <a href="https://gittuf.dev/">gittuf</a>) </br>
LWN, May 2024.
</p>

Expand Down

0 comments on commit 3d42be4

Please sign in to comment.