Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Sweep GHA Fix] Update GitHub Actions Advanced Techniques #25

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion content/en/posts/github-actions-advanced-techniques.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,13 @@ You can view actions referenced in a GitHub Actions workflow as dependencies in



### Add actions from GitHub Marketplace
### Browse GitHub Marketplace actions in the workflow editor

You can search and browse actions directly in the repository's workflow editor. The GitHub Marketplace page allows you to filter actions by category. From the sidebar, you can search for specific actions, view featured actions, and browse featured categories. You can also view the number of stars an action has received from the GitHub community.

1. In the repository, browse to the workflow file that you want to edit.
2. In the upper right corner of the file view, to open the workflow editor, click
3. On the right side of the editor, use the GitHub Marketplace sidebar to browse operations. The badge indicates that GitHub has verified the creator of the action as a partner organization.

The action's list page includes the action's version and the workflow syntax required to use the action.
To keep your workflow stable even if updates are made to the operation, you can reference the version of the operation you want to use by specifying a Git or Docker tag number in the workflow file.
Expand Down
Loading