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
510
GitHubUniverseRecap2024
pnsk
November 27, 2024
Tweet
Share
More Decks by pnsk
See All by pnsk
LT for women in tech
pnsk
0
31
2024-02-09-nailconf
pnsk
0
89
GitHubUniverseRecap2023
pnsk
1
120
Women Tech Terrace 2023
pnsk
0
490
Engineer Friendly City Fukuoka Festival 2020
pnsk
0
140
DevFestWomen 2019
pnsk
0
1.6k
Woman Tech Terrace 2019
pnsk
1
1.2k
Cloud Support Engineer Event 2019
pnsk
1
1.8k
Developers Summit Kobe 2018 0928
pnsk
0
1.4k
Featured
See All Featured
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
32
5.1k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
47
2.4k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
5
520
Embracing the Ebb and Flow
colly
85
4.6k
Building Applications with DynamoDB
mza
94
6.3k
Bash Introduction
62gerente
611
210k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.3k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Why You Should Never Use an ORM
jnunemaker
PRO
55
9.3k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
5
520
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