Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

GitHub actions and productivity

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Brent!

I never used GitHub Actions. Can you give some hints about how a Java Developer can be more productive using this tool? What are the benefits?

 
Author
Posts: 11
1
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Gustavo, thanks for the question. So GitHub Actions is an automation platform/framework integrated with GitHub. If you store your Java code in a GitHub repository, then you could use Actions to automatically do items like CI/CD, deployment, security scanning and other automation with it through GitHub - similar to what you might have used Jenkins for in other circumstances. Workflows in Actions are like scripts or programs or Jenkinsfiles if you know Jenkins.

If you have a GitHub repository and go to and add "actions/new?category=none&query=java" onto the end of the repository URL, you can see the various starter workflows around Java (though you'll probably also see ones for Javascript as well).
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic