├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .licensed.yml ├── .licenses └── go │ ├── dario.cat │ └── mergo.dep.yml │ ├── github.com │ ├── cloudflare │ │ └── circl │ │ │ ├── dh │ │ │ ├── x25519.dep.yml │ │ │ └── x448.dep.yml │ │ │ ├── ecc │ │ │ └── goldilocks.dep.yml │ │ │ ├── internal │ │ │ ├── conv.dep.yml │ │ │ └── sha3.dep.yml │ │ │ ├── math.dep.yml │ │ │ ├── math │ │ │ ├── fp25519.dep.yml │ │ │ ├── fp448.dep.yml │ │ │ └── mlsbset.dep.yml │ │ │ ├── sign.dep.yml │ │ │ └── sign │ │ │ ├── ed25519.dep.yml │ │ │ └── ed448.dep.yml │ ├── cyphar │ │ └── filepath-securejoin.dep.yml │ ├── emirpasic │ │ └── gods │ │ │ ├── containers.dep.yml │ │ │ ├── lists.dep.yml │ │ │ ├── lists │ │ │ └── arraylist.dep.yml │ │ │ ├── trees.dep.yml │ │ │ ├── trees │ │ │ └── binaryheap.dep.yml │ │ │ └── utils.dep.yml │ ├── go-git │ │ ├── gcfg.dep.yml │ │ ├── gcfg │ │ │ ├── scanner.dep.yml │ │ │ ├── token.dep.yml │ │ │ └── types.dep.yml │ │ ├── go-billy │ │ │ ├── v5.dep.yml │ │ │ └── v5 │ │ │ │ ├── helper │ │ │ │ ├── chroot.dep.yml │ │ │ │ └── polyfill.dep.yml │ │ │ │ ├── osfs.dep.yml │ │ │ │ └── util.dep.yml │ │ └── go-git │ │ │ ├── v5.dep.yml │ │ │ └── v5 │ │ │ ├── config.dep.yml │ │ │ ├── internal │ │ │ ├── path_util.dep.yml │ │ │ ├── revision.dep.yml │ │ │ └── url.dep.yml │ │ │ ├── plumbing.dep.yml │ │ │ ├── plumbing │ │ │ ├── cache.dep.yml │ │ │ ├── color.dep.yml │ │ │ ├── filemode.dep.yml │ │ │ ├── format │ │ │ │ ├── config.dep.yml │ │ │ │ ├── diff.dep.yml │ │ │ │ ├── gitignore.dep.yml │ │ │ │ ├── idxfile.dep.yml │ │ │ │ ├── index.dep.yml │ │ │ │ ├── objfile.dep.yml │ │ │ │ ├── packfile.dep.yml │ │ │ │ └── pktline.dep.yml │ │ │ ├── hash.dep.yml │ │ │ ├── object.dep.yml │ │ │ ├── protocol │ │ │ │ ├── packp.dep.yml │ │ │ │ └── packp │ │ │ │ │ ├── capability.dep.yml │ │ │ │ │ └── sideband.dep.yml │ │ │ ├── revlist.dep.yml │ │ │ ├── storer.dep.yml │ │ │ ├── transport.dep.yml │ │ │ └── transport │ │ │ │ ├── client.dep.yml │ │ │ │ ├── file.dep.yml │ │ │ │ ├── git.dep.yml │ │ │ │ ├── http.dep.yml │ │ │ │ ├── internal │ │ │ │ └── common.dep.yml │ │ │ │ ├── server.dep.yml │ │ │ │ └── ssh.dep.yml │ │ │ ├── storage.dep.yml │ │ │ ├── storage │ │ │ ├── filesystem.dep.yml │ │ │ ├── filesystem │ │ │ │ └── dotgit.dep.yml │ │ │ └── memory.dep.yml │ │ │ └── utils │ │ │ ├── binary.dep.yml │ │ │ ├── diff.dep.yml │ │ │ ├── ioutil.dep.yml │ │ │ ├── merkletrie.dep.yml │ │ │ ├── merkletrie │ │ │ ├── filesystem.dep.yml │ │ │ ├── index.dep.yml │ │ │ ├── internal │ │ │ │ └── frame.dep.yml │ │ │ └── noder.dep.yml │ │ │ ├── sync.dep.yml │ │ │ └── trace.dep.yml │ ├── gobuffalo │ │ └── here.dep.yml │ ├── golang │ │ └── groupcache │ │ │ └── lru.dep.yml │ ├── google │ │ ├── go-github │ │ │ └── v32 │ │ │ │ └── github.dep.yml │ │ └── go-querystring │ │ │ └── query.dep.yml │ ├── jbenet │ │ └── go-context │ │ │ └── io.dep.yml │ ├── kevinburke │ │ └── ssh_config.dep.yml │ ├── markbates │ │ ├── pkger.dep.yml │ │ └── pkger │ │ │ ├── here.dep.yml │ │ │ ├── internal │ │ │ └── maps.dep.yml │ │ │ ├── pkging.dep.yml │ │ │ └── pkging │ │ │ ├── embed.dep.yml │ │ │ ├── mem.dep.yml │ │ │ └── stdos.dep.yml │ ├── mitchellh │ │ └── ioprogress.dep.yml │ ├── pjbgf │ │ ├── sha1cd.dep.yml │ │ └── sha1cd │ │ │ ├── internal.dep.yml │ │ │ └── ubc.dep.yml │ ├── pkg │ │ └── errors.dep.yml │ ├── sergi │ │ └── go-diff │ │ │ └── diffmatchpatch.dep.yml │ ├── sirupsen │ │ └── logrus.dep.yml │ ├── skeema │ │ └── knownhosts.dep.yml │ ├── spf13 │ │ ├── cobra.dep.yml │ │ └── pflag.dep.yml │ └── xanzy │ │ └── ssh-agent.dep.yml │ └── gopkg.in │ └── warnings.v0.dep.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── cmd ├── licenses.go ├── pull.go ├── push.go ├── root.go ├── sync.go └── version.go ├── docs ├── logo.png └── logo.svg ├── go.mod ├── go.sum ├── internal ├── actionconfiguration │ ├── actionconfiguration.go │ └── actionconfiguration_test.go ├── cachedirectory │ ├── cachedirectory.go │ └── cachedirectory_test.go ├── environment │ └── environment.go ├── githubapiutil │ ├── githubapiutil.go │ └── githubapiutil_test.go ├── licenses │ └── licenses.go ├── pull │ ├── pull.go │ ├── pull_test.go │ └── pull_test │ │ ├── codeql-action-initial.git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 26 │ │ │ │ └── 936381e619a01122ea33993e3cebc474496805 │ │ │ ├── 28 │ │ │ │ └── 509716746a9e77e3f752e9df740cb443bf9960 │ │ │ ├── 61 │ │ │ │ └── 8dc8ffee7af67e4e2dfdbe416c53cca6099fab │ │ │ ├── 80 │ │ │ │ └── 8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec │ │ │ ├── 86 │ │ │ │ └── e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 │ │ │ ├── 4b │ │ │ │ └── 825dc642cb6eb9a060e54bf8d69288fbee4904 │ │ │ ├── 8e │ │ │ │ └── 38374296a8ca208f5e526da24c5b09f3f48624 │ │ │ ├── b9 │ │ │ │ └── f01aa2c50f49898d4c7845a66be8824499fe9d │ │ │ ├── bd │ │ │ │ └── 82b85707bc13904e3526517677039d4da4a9bb │ │ │ ├── cd │ │ │ │ └── 0f803f72414d81157588de0cb622f47f4bb9bc │ │ │ ├── d1 │ │ │ │ └── 231c269d15582e06ded28babdb8c224ba7e6ed │ │ │ ├── e5 │ │ │ │ ├── 29a54fad10a936308b2220e05f7f00757f8e7c │ │ │ │ └── f2bcf5a8815c924448ff3a54455983df118ee4 │ │ │ └── e7 │ │ │ │ └── 014e2af66d5b702946763455de2dcf9eb93c4f │ │ ├── packed-refs │ │ └── refs │ │ │ └── .gitkeep │ │ └── codeql-action-modified.git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ ├── 23 │ │ │ └── 43f1946cb859e615081bf46beb3d2c1ebc6607 │ │ ├── 26 │ │ │ └── 936381e619a01122ea33993e3cebc474496805 │ │ ├── 28 │ │ │ └── 509716746a9e77e3f752e9df740cb443bf9960 │ │ ├── 33 │ │ │ └── d42021633d74bcd0bf9c95e3d3159131a5faa7 │ │ ├── 42 │ │ │ └── d077b4730d1ba413f7bb7e0fa7c98653fb0c78 │ │ ├── 61 │ │ │ └── 8dc8ffee7af67e4e2dfdbe416c53cca6099fab │ │ ├── 69 │ │ │ └── b17963bbe836b76b09476cc4bd5f34383c883e │ │ ├── 80 │ │ │ └── 8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec │ │ ├── 86 │ │ │ └── e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 │ │ ├── 4b │ │ │ └── 825dc642cb6eb9a060e54bf8d69288fbee4904 │ │ ├── 6c │ │ │ └── 295d52bedfa1b0478b8b49a40b5c270bce8b21 │ │ ├── 8e │ │ │ └── 38374296a8ca208f5e526da24c5b09f3f48624 │ │ ├── b9 │ │ │ └── f01aa2c50f49898d4c7845a66be8824499fe9d │ │ ├── bd │ │ │ └── 82b85707bc13904e3526517677039d4da4a9bb │ │ ├── c2 │ │ │ └── 58bf9ef96af5e239c856f0ca9a9185aec1c06e │ │ ├── cd │ │ │ └── 0f803f72414d81157588de0cb622f47f4bb9bc │ │ ├── d1 │ │ │ └── 231c269d15582e06ded28babdb8c224ba7e6ed │ │ ├── e5 │ │ │ ├── 29a54fad10a936308b2220e05f7f00757f8e7c │ │ │ └── f2bcf5a8815c924448ff3a54455983df118ee4 │ │ └── e7 │ │ │ └── 014e2af66d5b702946763455de2dcf9eb93c4f │ │ ├── packed-refs │ │ └── refs │ │ └── .gitkeep ├── push │ ├── push.go │ ├── push_test.go │ └── push_test │ │ ├── action-cache-initial │ │ ├── git │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── objects │ │ │ │ ├── 26 │ │ │ │ │ └── 936381e619a01122ea33993e3cebc474496805 │ │ │ │ ├── 28 │ │ │ │ │ └── 509716746a9e77e3f752e9df740cb443bf9960 │ │ │ │ ├── 61 │ │ │ │ │ └── 8dc8ffee7af67e4e2dfdbe416c53cca6099fab │ │ │ │ ├── 80 │ │ │ │ │ └── 8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec │ │ │ │ ├── 86 │ │ │ │ │ └── e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 │ │ │ │ ├── 4b │ │ │ │ │ └── 825dc642cb6eb9a060e54bf8d69288fbee4904 │ │ │ │ ├── 8e │ │ │ │ │ └── 38374296a8ca208f5e526da24c5b09f3f48624 │ │ │ │ ├── b9 │ │ │ │ │ └── f01aa2c50f49898d4c7845a66be8824499fe9d │ │ │ │ ├── bd │ │ │ │ │ └── 82b85707bc13904e3526517677039d4da4a9bb │ │ │ │ ├── cd │ │ │ │ │ └── 0f803f72414d81157588de0cb622f47f4bb9bc │ │ │ │ ├── d1 │ │ │ │ │ └── 231c269d15582e06ded28babdb8c224ba7e6ed │ │ │ │ ├── e5 │ │ │ │ │ ├── 29a54fad10a936308b2220e05f7f00757f8e7c │ │ │ │ │ └── f2bcf5a8815c924448ff3a54455983df118ee4 │ │ │ │ └── e7 │ │ │ │ │ └── 014e2af66d5b702946763455de2dcf9eb93c4f │ │ │ └── packed-refs │ │ └── releases │ │ │ ├── codeql-bundle-20200101 │ │ │ ├── assets │ │ │ │ └── bundle.bin │ │ │ └── metadata.json │ │ │ └── codeql-bundle-20200630 │ │ │ ├── assets │ │ │ └── bundle.bin │ │ │ └── metadata.json │ │ └── action-cache-modified │ │ ├── git │ │ ├── HEAD │ │ ├── config │ │ ├── objects │ │ │ ├── 26 │ │ │ │ └── 936381e619a01122ea33993e3cebc474496805 │ │ │ ├── 28 │ │ │ │ └── 509716746a9e77e3f752e9df740cb443bf9960 │ │ │ ├── 61 │ │ │ │ └── 8dc8ffee7af67e4e2dfdbe416c53cca6099fab │ │ │ ├── 80 │ │ │ │ └── 8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec │ │ │ ├── 86 │ │ │ │ └── e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 │ │ │ ├── 4b │ │ │ │ └── 825dc642cb6eb9a060e54bf8d69288fbee4904 │ │ │ ├── 8e │ │ │ │ └── 38374296a8ca208f5e526da24c5b09f3f48624 │ │ │ ├── b9 │ │ │ │ └── f01aa2c50f49898d4c7845a66be8824499fe9d │ │ │ ├── bd │ │ │ │ └── 82b85707bc13904e3526517677039d4da4a9bb │ │ │ ├── cd │ │ │ │ └── 0f803f72414d81157588de0cb622f47f4bb9bc │ │ │ ├── d1 │ │ │ │ └── 231c269d15582e06ded28babdb8c224ba7e6ed │ │ │ ├── e5 │ │ │ │ ├── 29a54fad10a936308b2220e05f7f00757f8e7c │ │ │ │ └── f2bcf5a8815c924448ff3a54455983df118ee4 │ │ │ └── e7 │ │ │ │ └── 014e2af66d5b702946763455de2dcf9eb93c4f │ │ └── packed-refs │ │ └── releases │ │ ├── codeql-bundle-20200101 │ │ ├── assets │ │ │ └── bundle.bin │ │ └── metadata.json │ │ └── codeql-bundle-20200630 │ │ ├── assets │ │ └── bundle.bin │ │ └── metadata.json └── version │ └── version.go ├── main.go └── test └── test.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /cache/ 2 | /codeql-action-sync 3 | /dist/ 4 | /pkged.go 5 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.licenses/go/dario.cat/mergo.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/dario.cat/mergo.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/dh/x25519.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/dh/x25519.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/dh/x448.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/dh/x448.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/ecc/goldilocks.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/ecc/goldilocks.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/internal/conv.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/internal/conv.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/internal/sha3.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/internal/sha3.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/math.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/math.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/math/fp25519.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/math/fp25519.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/math/fp448.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/math/fp448.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/math/mlsbset.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/math/mlsbset.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/sign.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/sign.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/sign/ed25519.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/sign/ed25519.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cloudflare/circl/sign/ed448.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cloudflare/circl/sign/ed448.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/cyphar/filepath-securejoin.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/cyphar/filepath-securejoin.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/containers.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/containers.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/lists.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/lists.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/lists/arraylist.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/lists/arraylist.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/trees.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/trees.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/trees/binaryheap.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/trees/binaryheap.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/emirpasic/gods/utils.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/emirpasic/gods/utils.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/gcfg.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/gcfg.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/gcfg/scanner.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/gcfg/scanner.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/gcfg/token.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/gcfg/token.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/gcfg/types.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/gcfg/types.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-billy/v5.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-billy/v5.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-billy/v5/helper/chroot.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-billy/v5/helper/chroot.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-billy/v5/helper/polyfill.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-billy/v5/helper/polyfill.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-billy/v5/osfs.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-billy/v5/osfs.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-billy/v5/util.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-billy/v5/util.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/config.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/config.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/internal/path_util.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/internal/path_util.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/internal/revision.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/internal/revision.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/internal/url.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/internal/url.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/cache.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/cache.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/color.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/color.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/filemode.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/filemode.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/config.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/config.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/diff.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/diff.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/gitignore.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/gitignore.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/idxfile.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/idxfile.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/index.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/index.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/objfile.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/objfile.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/packfile.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/packfile.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/format/pktline.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/format/pktline.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/hash.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/hash.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/object.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/object.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp/capability.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp/capability.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/revlist.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/revlist.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/storer.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/storer.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/client.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/client.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/file.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/file.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/git.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/git.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/http.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/http.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/internal/common.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/internal/common.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/server.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/server.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/ssh.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/plumbing/transport/ssh.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/storage.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/storage.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/storage/filesystem.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/storage/filesystem.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/storage/filesystem/dotgit.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/storage/filesystem/dotgit.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/storage/memory.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/storage/memory.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/binary.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/binary.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/diff.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/diff.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/ioutil.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/ioutil.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/filesystem.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/filesystem.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/index.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/index.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/internal/frame.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/internal/frame.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/noder.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/merkletrie/noder.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/sync.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/sync.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/go-git/go-git/v5/utils/trace.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/go-git/go-git/v5/utils/trace.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/gobuffalo/here.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/gobuffalo/here.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/golang/groupcache/lru.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/golang/groupcache/lru.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/google/go-github/v32/github.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/google/go-github/v32/github.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/google/go-querystring/query.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/google/go-querystring/query.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/jbenet/go-context/io.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/jbenet/go-context/io.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/kevinburke/ssh_config.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/kevinburke/ssh_config.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/here.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/here.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/internal/maps.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/internal/maps.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/pkging.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/pkging.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/pkging/embed.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/pkging/embed.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/pkging/mem.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/pkging/mem.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/markbates/pkger/pkging/stdos.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/markbates/pkger/pkging/stdos.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/mitchellh/ioprogress.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/mitchellh/ioprogress.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/pjbgf/sha1cd.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/pjbgf/sha1cd.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/pjbgf/sha1cd/internal.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/pjbgf/sha1cd/internal.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/pjbgf/sha1cd/ubc.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/pjbgf/sha1cd/ubc.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/pkg/errors.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/pkg/errors.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/sergi/go-diff/diffmatchpatch.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/sergi/go-diff/diffmatchpatch.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/sirupsen/logrus.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/sirupsen/logrus.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/skeema/knownhosts.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/skeema/knownhosts.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/spf13/cobra.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/spf13/cobra.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/spf13/pflag.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/spf13/pflag.dep.yml -------------------------------------------------------------------------------- /.licenses/go/github.com/xanzy/ssh-agent.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/github.com/xanzy/ssh-agent.dep.yml -------------------------------------------------------------------------------- /.licenses/go/gopkg.in/warnings.v0.dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/.licenses/go/gopkg.in/warnings.v0.dep.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/licenses.go -------------------------------------------------------------------------------- /cmd/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/pull.go -------------------------------------------------------------------------------- /cmd/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/push.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/sync.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/cmd/version.go -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/go.sum -------------------------------------------------------------------------------- /internal/actionconfiguration/actionconfiguration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/actionconfiguration/actionconfiguration.go -------------------------------------------------------------------------------- /internal/actionconfiguration/actionconfiguration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/actionconfiguration/actionconfiguration_test.go -------------------------------------------------------------------------------- /internal/cachedirectory/cachedirectory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/cachedirectory/cachedirectory.go -------------------------------------------------------------------------------- /internal/cachedirectory/cachedirectory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/cachedirectory/cachedirectory_test.go -------------------------------------------------------------------------------- /internal/environment/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/environment/environment.go -------------------------------------------------------------------------------- /internal/githubapiutil/githubapiutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/githubapiutil/githubapiutil.go -------------------------------------------------------------------------------- /internal/githubapiutil/githubapiutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/githubapiutil/githubapiutil_test.go -------------------------------------------------------------------------------- /internal/licenses/licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/licenses/licenses.go -------------------------------------------------------------------------------- /internal/pull/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull.go -------------------------------------------------------------------------------- /internal/pull/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test.go -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/config -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/26/936381e619a01122ea33993e3cebc474496805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/26/936381e619a01122ea33993e3cebc474496805 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/28/509716746a9e77e3f752e9df740cb443bf9960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/28/509716746a9e77e3f752e9df740cb443bf9960 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904: -------------------------------------------------------------------------------- 1 | x+)JMU0` 2 | , -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-initial.git/packed-refs -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-initial.git/refs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/config -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/23/43f1946cb859e615081bf46beb3d2c1ebc6607: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/23/43f1946cb859e615081bf46beb3d2c1ebc6607 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/26/936381e619a01122ea33993e3cebc474496805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/26/936381e619a01122ea33993e3cebc474496805 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/28/509716746a9e77e3f752e9df740cb443bf9960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/28/509716746a9e77e3f752e9df740cb443bf9960 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/33/d42021633d74bcd0bf9c95e3d3159131a5faa7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/33/d42021633d74bcd0bf9c95e3d3159131a5faa7 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/42/d077b4730d1ba413f7bb7e0fa7c98653fb0c78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/42/d077b4730d1ba413f7bb7e0fa7c98653fb0c78 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904: -------------------------------------------------------------------------------- 1 | x+)JMU0` 2 | , -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/69/b17963bbe836b76b09476cc4bd5f34383c883e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/69/b17963bbe836b76b09476cc4bd5f34383c883e -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/6c/295d52bedfa1b0478b8b49a40b5c270bce8b21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/6c/295d52bedfa1b0478b8b49a40b5c270bce8b21 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/c2/58bf9ef96af5e239c856f0ca9a9185aec1c06e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/c2/58bf9ef96af5e239c856f0ca9a9185aec1c06e -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4 -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/pull/pull_test/codeql-action-modified.git/packed-refs -------------------------------------------------------------------------------- /internal/pull/pull_test/codeql-action-modified.git/refs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push.go -------------------------------------------------------------------------------- /internal/push/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test.go -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/config -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/26/936381e619a01122ea33993e3cebc474496805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/26/936381e619a01122ea33993e3cebc474496805 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/28/509716746a9e77e3f752e9df740cb443bf9960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/28/509716746a9e77e3f752e9df740cb443bf9960 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904: -------------------------------------------------------------------------------- 1 | x+)JMU0` 2 | , -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/git/packed-refs -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200101/assets/bundle.bin: -------------------------------------------------------------------------------- 1 | This isn't really a CodeQL bundle either! 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200101/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200101/metadata.json -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200630/assets/bundle.bin: -------------------------------------------------------------------------------- 1 | This isn't really a CodeQL bundle! 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200630/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-initial/releases/codeql-bundle-20200630/metadata.json -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/config -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/26/936381e619a01122ea33993e3cebc474496805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/26/936381e619a01122ea33993e3cebc474496805 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/28/509716746a9e77e3f752e9df740cb443bf9960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/28/509716746a9e77e3f752e9df740cb443bf9960 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904: -------------------------------------------------------------------------------- 1 | x+)JMU0` 2 | , -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/61/8dc8ffee7af67e4e2dfdbe416c53cca6099fab -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/80/8d4d2d6b7aa39089b99ca0d89f1fc6a2bc63ec -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/86/e83156c07aea03c86a7cd7c5f6b0ee1453c2d7 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/8e/38374296a8ca208f5e526da24c5b09f3f48624 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/b9/f01aa2c50f49898d4c7845a66be8824499fe9d -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/bd/82b85707bc13904e3526517677039d4da4a9bb -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/cd/0f803f72414d81157588de0cb622f47f4bb9bc -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/d1/231c269d15582e06ded28babdb8c224ba7e6ed -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/e5/29a54fad10a936308b2220e05f7f00757f8e7c -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/e5/f2bcf5a8815c924448ff3a54455983df118ee4 -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/objects/e7/014e2af66d5b702946763455de2dcf9eb93c4f -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/git/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/git/packed-refs -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200101/assets/bundle.bin: -------------------------------------------------------------------------------- 1 | This isn't really a CodeQL bundle either! 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200101/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200101/metadata.json -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200630/assets/bundle.bin: -------------------------------------------------------------------------------- 1 | This isn't really a CodeQL bundle! 2 | -------------------------------------------------------------------------------- /internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200630/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/push/push_test/action-cache-modified/releases/codeql-bundle-20200630/metadata.json -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/main.go -------------------------------------------------------------------------------- /test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codeql-action-sync-tool/HEAD/test/test.go --------------------------------------------------------------------------------