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 ConFoo Montreal 2025-02-26
Search
sullis
February 26, 2025
Programming
0
91
GitHub Actions ConFoo Montreal 2025-02-26
GitHub Actions
Confoo Montreal
February 2025
sullis
February 26, 2025
Tweet
Share
More Decks by sullis
See All by sullis
Dependency Management for Java - Seattle 2025-11-18
sullis
0
16
Dependency Management for Java - Portland - 2025-11-04
sullis
0
14
Dependency management for Java applications 2025-09-11
sullis
0
23
S3 NYC Iceberg meetup 2025-07-10
sullis
0
47
Amazon S3 Chicago 2025-06-04
sullis
0
120
Amazon S3 Boston 2025-05-07
sullis
0
85
Netty ConFoo Montreal 2025-02-27
sullis
0
130
Netty Portland Java User Group 2025-02-18
sullis
0
28
Amazon S3 NYJavaSIG 2024-12-12
sullis
0
210
Other Decks in Programming
See All in Programming
GoLab2025 Recap
kuro_kurorrr
0
1.6k
生成AI時代を勝ち抜くエンジニア組織マネジメント
coconala_engineer
0
38k
Spinner 軸ズレ現象を調べたらレンダリング深淵に飲まれた #レバテックMeetup
bengo4com
1
210
Cell-Based Architecture
larchanjo
0
160
Flutter On-device AI로 완성하는 오프라인 앱, 박제창 @DevFest INCHEON 2025
itsmedreamwalker
1
190
CSC307 Lecture 03
javiergs
PRO
1
470
Developing static sites with Ruby
okuramasafumi
1
350
大規模Cloud Native環境におけるFalcoの運用
owlinux1000
0
240
AtCoder Conference 2025「LLM時代のAHC」
imjk
2
640
Unicodeどうしてる? PHPから見たUnicode対応と他言語での対応についてのお伺い
youkidearitai
PRO
0
330
脳の「省エネモード」をデバッグする ~System 1(直感)と System 2(論理)の切り替え~
panda728
PRO
0
130
HTTPプロトコル正しく理解していますか? 〜かわいい猫と共に学ぼう。ฅ^•ω•^ฅ ニャ〜
hekuchan
2
600
Featured
See All Featured
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
140
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
120
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
140
Google's AI Overviews - The New Search
badams
0
890
Kristin Tynski - Automating Marketing Tasks With AI
techseoconnect
PRO
0
120
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
65
35k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.6k
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
120
Designing Experiences People Love
moore
143
24k
How Software Deployment tools have changed in the past 20 years
geshan
0
31k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.4k
jQuery: Nuts, Bolts and Bling
dougneiner
65
8.3k
Transcript
GitHub Actions 2025-02-26 Sean Sullivan
GITHUB ACTIONS
Agenda Core concepts Security
“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 ows
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
Work fl ow editor
.github/work fl ows
Actions tab
Actions tab
Actions tab
Valkey Iceberg Log4j Open source projects using GitHub Actions Spring
Boot Netty 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 24.04 Ubuntu 22.04 Linux support
ARM support
ARM support
ARM support
Work fl ow matrix
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
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
GitHub Actions YAML Automation Conclusion
Thank you tinyrobots.bsky.social github.com/sullis
THE END
Bonus slides
“CI ensures that the code that we create, as a
team, works by providing us with rapid feedback on any problems”
None