-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,299 changed files
with
621,569 additions
and
214,914 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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,6 @@ | ||
[codespell] | ||
skip = .git,*.pdf,*.svg,gems,index,fixtures,CHANGELOG_ARCHIVE_*,yarn.lock | ||
ignore-regex = \bsha512-[^"]*|ENV\["ROUGE"\]|\b(com\.google\.errorprone)\b|\bto(_not)? include .*versio"|https://\S* | ||
# some modules, parts of regexes, and variable names to ignore, some | ||
# misspellings in fixtures/external responses we do not own | ||
ignore-words-list = caf,bu,nwo,nd,kernal,crate,unparseable,couldn,defintions,hashin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
#!/bin/bash | ||
# This pull takes a while, adding it to the prebuild | ||
docker pull ghcr.io/dependabot/dependabot-updater:latest | ||
#!/usr/bin/env bash | ||
docker pull ghcr.io/github/dependabot-update-job-proxy/dependabot-update-job-proxy:latest |
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 |
---|---|---|
@@ -1,7 +1,14 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
gh release download --repo dependabot/cli -p "*linux-amd64.tar.gz" | ||
tar xzvf ./*.tar.gz >/dev/null 2>&1 | ||
sudo mv dependabot /usr/local/bin | ||
rm ./*.tar.gz | ||
|
||
# The image comes loaded with 8.0 SDK, but we need the 7.0 and 9.0 runtimes for running tests | ||
sudo wget https://dot.net/v1/dotnet-install.sh | ||
sudo chmod +x dotnet-install.sh | ||
sudo ./dotnet-install.sh -c 7.0 --runtime dotnet --install-dir /usr/share/dotnet/shared | ||
sudo ./dotnet-install.sh -c 9.0 --install-dir /usr/share/dotnet | ||
sudo rm ./dotnet-install.sh | ||
|
||
echo "export LOCAL_GITHUB_ACCESS_TOKEN=$GITHUB_TOKEN" >> ~/.bashrc |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,7 @@ indent_style = tab | |
|
||
[*.php] | ||
indent_size = 4 | ||
|
||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 80 |
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,8 @@ | ||
# These commits will be ignored by the GitHub blame view. | ||
# The git blame CLI can ignore them as well by doing: | ||
# git blame --ignore-revs-file .git-blame-ignore-revs <filepath> | ||
# or via global config: | ||
# git config --global blame.ignoreRevsFile .git-blame-ignore-revs | ||
# | ||
# Changed Layout/DotPosition from leading to trailing | ||
3fc49229761517cf3dc6979018a9a2d84f733ece |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
* text=auto | ||
nuget/spec/fixtures/nuspecs/Microsoft.Extensions.DependencyModel.nuspec text eol=crlf | ||
* text=auto eof=lf | ||
Dockerfile.development linguist-language=Dockerfile | ||
Dockerfile.updater-core linguist-language=Dockerfile | ||
bundler/spec/fixtures/rubygems_responses/*.rz binary linguist-generated |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
shared: &shared | ||
- .dockerignore | ||
- Dockerfile.updater-core | ||
- 'common/**' | ||
- 'updater/Gemfil*' | ||
- 'omnibus/**' | ||
- '.github/workflows/ci.yml' | ||
bundler: | ||
- *shared | ||
- 'bundler/**' | ||
cargo: | ||
- *shared | ||
- 'cargo/**' | ||
common: | ||
- *shared | ||
- '**/**' | ||
composer: | ||
- *shared | ||
- 'composer/**' | ||
devcontainers: | ||
- *shared | ||
- 'devcontainers/**' | ||
docker: | ||
- *shared | ||
- 'docker/**' | ||
dotnet_sdk: | ||
- *shared | ||
- 'dotnet_sdk/**' | ||
elm: | ||
- *shared | ||
- 'elm/**' | ||
git_submodules: | ||
- *shared | ||
- 'git_submodules/**' | ||
github_actions: | ||
- *shared | ||
- 'github_actions/**' | ||
go_modules: | ||
- *shared | ||
- 'go_modules/**' | ||
gradle: | ||
- *shared | ||
- 'maven/**' | ||
- 'gradle/**' | ||
hex: | ||
- *shared | ||
- 'hex/**' | ||
maven: | ||
- *shared | ||
- 'maven/**' | ||
npm_and_yarn: | ||
- *shared | ||
- 'npm_and_yarn/**' | ||
nuget: | ||
- *shared | ||
- 'nuget/**' | ||
pub: | ||
- *shared | ||
- 'pub/**' | ||
python: | ||
- *shared | ||
- 'python/**' | ||
swift: | ||
- *shared | ||
- 'swift/**' | ||
terraform: | ||
- *shared | ||
- 'terraform/**' |
Oops, something went wrong.