-
Notifications
You must be signed in to change notification settings - Fork 58
Bump cachix/install-nix-action from 15 to 16 #95
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
Merged
mergify
merged 2 commits into
main
from
dependabot/github_actions/cachix/install-nix-action-16
Nov 30, 2021
Merged
Bump cachix/install-nix-action from 15 to 16 #95
mergify
merged 2 commits into
main
from
dependabot/github_actions/cachix/install-nix-action-16
Nov 30, 2021
Conversation
This file contains hidden or 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
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
Dependabot based push/pr builds don't have access to the quay secrets it seems (github magic?) (see [1], [2]) so lets avoid it all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs[3]. [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
Dependabot based push/pr builds don't have access to the quay secrets it seems (github magic?) (see [1], [2]) so lets avoid it all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs[3]. Fixes #92 [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
Dependabot based push/pr builds don't have access to the quay secrets it seems (github magic?) (see [1], [2]) so lets avoid it all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs[3]. Fixes #92 [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
Dependabot based push/pr builds don't have access to the quay secrets it seems (github magic?) (see [1], [2]) so lets avoid it all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs[3]. Fixes #92 [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
Dependabot PRs are different than other non-contributor PRs in that the branch comes from this repo, which normally allows the secret to be available for CI yet the builds still fail (see [1], [2]). It seems that GitHub does not make secrets available for these PRs as yet another special case [3]. If we skip logging in to quay for dependabot then we side step this all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs [3]. [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events Fixes #92 Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mergify bot
added a commit
that referenced
this pull request
Nov 30, 2021
## Description Avoids logging into quay for dependabot builds. ## Why is this needed Fixes #92 Dependabot PRs are different than other non-contributor PRs in that the branch comes from this repo, which normally allows the secret to be available for CI yet the builds still fail (see [1], [2]). It seems that GitHub does not make secrets available for these PRs as yet another special case [3]. If we skip logging in to quay for dependabot then we side step this all together. Dependabot pushes/PRs can be recognized by the github.actor value according to the GitHub docs [3]. [1]: #89 [2]: #95 [3]: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#handling-pull_request-events I wanted to avoid logging in for non main pushes all together but that may make kernel testing harder than strictly necessary. ## How Has This Been Tested? CI? ## How are existing users impacted? What migration steps/scripts do we need? Updated dependencies sooner hopefully.
Contributor
|
@dependabot rebase |
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 15 to 16. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](cachix/install-nix-action@v15...v16) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
cbf216b to
25c9291
Compare
mmlb
approved these changes
Nov 30, 2021
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
We skip logging in to quay.io when github.actor is dependabot in [#96] but did not check if any pushes were attempted. This was missed in the subsequent dependabot PRs [#89] and [#95] because there was no branch protection setup and I added the ready-to-merge label so mergify merged it :(. This should fix that. [#89]: #89 [#95]: #95 [#96]: #96 Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
We skipped logging in to quay.io when github.actor is dependabot in [#96] but did not check if any pushes were attempted. This was missed in the subsequent dependabot PRs [#89] and [#95] because there was no branch protection setup and I added the ready-to-merge label so mergify merged it :(. This should fix that. [#89]: #89 [#95]: #95 [#96]: #96 Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mmlb
added a commit
that referenced
this pull request
Nov 30, 2021
We skipped logging in to quay.io when github.actor is dependabot in [#96] but did not check if any pushes were attempted. This change will avoid that failure. This was missed in the subsequent dependabot PRs [#89] and [#95] because there was no branch protection setup and I added the ready-to-merge label so mergify merged it :(. I've added branch protection to require the actions to pass. [#89]: #89 [#95]: #95 [#96]: #96 Signed-off-by: Manuel Mendez <mmendez@equinix.com>
mergify bot
added a commit
that referenced
this pull request
Nov 30, 2021
## Description Avoids pushing to quay if the PR/push originates from dependabot. ## Why is this needed We skipped logging in to quay.io when github.actor is dependabot in [#96] but did not check if any pushes were attempted. This change will avoid that failure. This was missed in the subsequent dependabot PRs [#89] and [#95] because there was no branch protection setup and I added the ready-to-merge label so mergify merged it :(. I've added branch protection to require the actions to pass. [#89]: #89 [#95]: #95 [#96]: #96 ## How Has This Been Tested? CI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
ready-to-merge
Signal to Mergify to merge the PR.
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.
Bumps cachix/install-nix-action from 15 to 16.
Release notes
Sourced from cachix/install-nix-action's releases.
Commits
d56f3ceREADME: fix syntax3db69e0Merge pull request #111 from cachix/act76f9967try fixing act7a6ac48Update .github/workflows/test.yml31bbb1eUpdate .github/workflows/test.yml9489b6bUpdate .github/workflows/test.ymlac89927Update .github/workflows/test.ymlc5e83e5Update .github/workflows/test.yml5315c85Test for actd045d9fMerge pull request #115 from zimbatm/bash-cleanupDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)