Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
GitHubUniverseRecap2024
Search
pnsk
November 27, 2024
2
590
GitHubUniverseRecap2024
pnsk
November 27, 2024
Tweet
Share
More Decks by pnsk
See All by pnsk
LT for women in tech
pnsk
0
57
2024-02-09-nailconf
pnsk
0
130
GitHubUniverseRecap2023
pnsk
1
180
Women Tech Terrace 2023
pnsk
0
560
Engineer Friendly City Fukuoka Festival 2020
pnsk
0
180
DevFestWomen 2019
pnsk
0
1.7k
Woman Tech Terrace 2019
pnsk
1
1.3k
Cloud Support Engineer Event 2019
pnsk
1
1.9k
Developers Summit Kobe 2018 0928
pnsk
0
1.5k
Featured
See All Featured
AI Search: Implications for SEO and How to Move Forward - #ShenzhenSEOConference
aleyda
1
1.1k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
300
Git: the NoSQL Database
bkeepers
PRO
432
66k
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
110k
HU Berlin: Industrial-Strength Natural Language Processing with spaCy and Prodigy
inesmontani
PRO
0
250
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
62
51k
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
930
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
2.5k
How GitHub (no longer) Works
holman
316
140k
Tell your own story through comics
letsgokoyo
1
840
Transcript
あなたの知らない GitHub Actions 小技 集
None
GitHub Actions Is a CI/CD platform. It lets us automate
workflows at every step in software development process.
Agenda 1. Workflow 2. Environment 3. Deployment view 4. Insight
5. Immutable Actions
Workflow
Matrix jobs Workflow • Test multiple versions of dependencies or
multiple OS versions • Speed up testing processes
continue-on-error • Continuously run Actions if a step fails •
Available for job/step levels Workflow
continue-on-error • Handling a failure job like roll backing the
deployment • Negative test Expected use cases
Deployment view
Deployment history • Deployment view • Pinging environments (max: 10)
• More filters on the view ◦ Creators, statues, environments, commits.
Environment
• Required reviewers • Wait timer • Custom rules with
GitHub Apps Deployment protection rules Environment
• Protected branches only • Selected branches and tags Deployment
branches and tags Environment
Insight
Usage metrics Insight • Usage metrics for your organizations
Performance metrics Insight • How long did workflows/jobs take to
complete? • How long did workflows/jobs wait to run? • Which workflows/jobs are consistently failing? • Where is the longest running workflows/jobs?
Immutable Actions
Immutable Actions Mutable References Actions can be referenced in workflow
by Git tag, release name, branch name or SHA. Tag in particular are mutable by design. Risk Mutable references can become subject to history overwrite attacks or changes to the target of the Git tags Looks like a released version, but is a Git tag
Immutable Actions • Actions is published as OCI packages to
GitHub Container Registry • Immutable version tags with SemVer SemVer that points at immutable artifact
https://support.github.com