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
GitHub Actions 2021-12-16
Search
sullis
December 16, 2021
Programming
0
35
GitHub Actions 2021-12-16
GitHub Actions overview
December 16, 2021
sullis
December 16, 2021
Tweet
Share
More Decks by sullis
See All by sullis
Netty - Montreal Java User Group 2024-05-21
sullis
0
110
Netty Chicago Java User Group 2024-04-17
sullis
0
620
Java 21 - Portland Java User Group 2023-10-24
sullis
0
270
Microbenchmarking with JMH - Portland 2023-03-14
sullis
0
130
Code generation on the Java VM 2022-04-19
sullis
0
100
Mockito 2022-01-25
sullis
0
160
Apache Struts and the Equifax data breach 2021-06-03
sullis
0
51
Guardrail State of the Union 2021-04-13
sullis
0
310
Guardrail: State of the Union 2021-03-18
sullis
0
150
Other Decks in Programming
See All in Programming
【TID2024】模擬講義:プログラマと一緒にゲームをデザインしてみよう!
akatsukigames_tech
0
580
Kotlin 2.0が与えるAndroid開発の進化
masayukisuda
1
280
Swift Concurrencyとレースコンディション
objectiveaudio
1
410
令和トラベルにおけるLLM活用事例:社内ツール開発から得た学びと実践
ippo012
0
130
ドメイン駆動設計を実践するために必要なもの
bikisuke
3
330
rbs-inlineを導入してYARDからRBSに移行する
euglena1215
1
260
いまから追い上げる、Jetpack Compose トレーニング
nyafunta9858
0
250
GraphQLの魅力を引き出すAndroidクライアント実装
morux2
3
330
The Sequel to a Dream of Ruby Parser's Grammar
ydah
1
220
ブラウザ互換の重要性 - あらゆるユーザーに価値を届けるために必要なこと
yamanoku
0
110
サーバーレスで負荷試験!Step Functions + Lambdaを使ったk6の分散実行
shuntakahashi
6
1.5k
Amazon BedrockでサーバレスなAIお料理ボットを作成する!!
tosuri13
0
200
Featured
See All Featured
Teambox: Starting and Learning
jrom
131
8.7k
What’s in a name? Adding method to the madness
productmarketing
PRO
21
3k
Automating Front-end Workflow
addyosmani
1365
200k
The Cost Of JavaScript in 2023
addyosmani
42
5.2k
Into the Great Unknown - MozCon
thekraken
29
1.4k
Navigating Team Friction
lara
183
13k
For a Future-Friendly Web
brad_frost
174
9.3k
The Brand Is Dead. Long Live the Brand.
mthomps
53
37k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
29
2.6k
How to Ace a Technical Interview
jacobian
275
23k
Infographics Made Easy
chrislema
239
18k
GraphQLの誤解/rethinking-graphql
sonatard
65
9.8k
Transcript
GitHub Actions 2021-12-16 Sean Sullivan
Agenda GitHub Actions Core concepts Security
GITHUB ACTIONS
“GitHub Actions help you automate your software development work fl
ows” source: GitHub.com
“You can write individual tasks, called actions, and combine them
to create a custom work fl ow” source: GitHub.com
Getting started
Actions tab
Actions tab Starter Work fl ow
Work fl ow editor
Work fl ow editor
Work fl ow editor
Work fl ow editor checkout
Work fl ow editor setup-java
Work fl ow editor run: sbt test
Work fl ow editor click
Work fl ow editor click
.github/work fl ows
Actions tab
Actions tab
Actions tab
Ruby On Rails uses GitHub Actions
Ruby on Rails
Ruby on Rails
Ruby on Rails
Ruby on Rails
Redis Dropwizard Log4j Open source projects using GitHub Actions twilio-java
Guardrail Net fl ix Zuul
Core concepts
Events Actions Work fl ows
create deployment deployment_status issue created pull_request push schedule label created
(and many more) Events trigger work fl ows
Work fl ows are custom automated processes that you can
set up in your repository to build, test, package, release, or deploy source: GitHub.com
GitHub webhooks GitHub Actions work fl ows
Actions are individual tasks that you can combine to create
jobs source: GitHub.com
You can create custom Actions or use Actions provided by
the GitHub community source: GitHub.com
action.yml declares the inputs and outputs for an action source:
GitHub.com
Types of Actions: JavaScript Docker source: GitHub.com
“GitHub Actions is available with GitHub Free, GitHub Pro, GitHub
Team, and GitHub Enterprise” source: GitHub.com
What if I already have an existing CI tool enabled?
Keep your existing CI tool and enable GitHub Actions
Evaluate both CI tools running side-by-side
Actions runtime Runners Virtual Environments
Runners GitHub-hosted Self-hosted
Hosted Runners “GitHub hosts Linux and Windows runners on Standard_DS2_v2
virtual machines in Microsoft Azure with the GitHub Actions runner application installed” source: GitHub.com
Self-Hosted Runners “Self-hosted runners can be physical, virtual, container, on-premises,
or in a cloud” source: GitHub.com
Self-Hosted Runners
Self-Hosted Runners C Sharp
Virtual Environments
Ubuntu 20.04 Ubuntu 18.04 Linux support
Third party actions
AWS Actions Azure Actions Google Cloud Actions
Pulumi Actions Terraform Actions Docker Actions
https://github.com/aws-actions
None
AWS: action.yml
Security
Secrets access protected keys using the secrets context object source:
GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
Secrets source: GitHub.com
Self-Hosted Runners “do not use self- hosted runners with public
repositories” source: GitHub.com
Self-Hosted Runners “Forks of your public repository can potentially run
dangerous code on your self-hosted runner machine” source: GitHub.com
Final thoughts
“CI ensures that the code that we create, as a
team, works by providing us with rapid feedback on any problems”
GitHub Actions YAML Automation Conclusion
Thank you twitter.com/tinyrobots github.com/sullis
Bonus slides
None
THE END