-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat: add github-actions tag support #7434
Merged
Merged
Changes from 3 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
3957efb
feat: add github-actions tag support
RichiCoder1 999f138
amend with more realistic example
RichiCoder1 ace7c48
improve actions regex
RichiCoder1 dcdeb48
expand dep info
RichiCoder1 858b6b7
lowercase action
RichiCoder1 09cf9df
address pr feedback
RichiCoder1 f845374
fix: oops
RichiCoder1 4fda3a5
remove old workflow support
RichiCoder1 4fbde9a
fix: switch to docker versioning and github releases datasource
RichiCoder1 a90eccc
Merge branch 'master' into feat/github-actions
RichiCoder1 54018d1
tweak: debug => trace
RichiCoder1 08d17a5
switch back to github tags and add skip reason
RichiCoder1 5cdeea2
Merge branch 'master' into feat/github-actions
rarkins 01aa267
Merge branch 'master' into feat/github-actions
viceice b0e91d4
Remove logs
rarkins 84382b7
Merge branch 'master' into feat/github-actions
rarkins 3846dcb
Merge branch 'master' into feat/github-actions
viceice File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Run linters | ||
|
||
on: [push] | ||
|
||
jobs: | ||
shell_lint: | ||
name: Shell lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Shell lint | ||
# Isn't supported current | ||
uses: actions/bin/shellcheck@master | ||
run: ./entrypoint.sh | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
# - uses: docker/setup-qemu-action@v1 | ||
- name: Build | ||
uses: docker/build-push-action@v2 |
27 changes: 10 additions & 17 deletions
27
lib/manager/github-actions/__snapshots__/extract.spec.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be removed