Compare commits
65 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37f8b6bee9 | |||
| d3bf9767f7 | |||
| 8fb10cfa94 | |||
| ab710e48bd | |||
| b70a65d18b | |||
| 8659e181c1 | |||
| fc2c609f9c | |||
| 7c183f9b51 | |||
| 4ab3e731a1 | |||
| b47191d0e7 | |||
| cbbe0d523c | |||
| 5996880e1f | |||
| b7399d7b57 | |||
| c8816bc3c0 | |||
| 6030864125 | |||
| a0aeedb796 | |||
| 5f4de58149 | |||
| 1412d00696 | |||
| ed25954c6c | |||
| 17ffd6eca4 | |||
| 170aaa216c | |||
| 3f87ce728d | |||
| 8f29ed31f6 | |||
| 98e0fe33bf | |||
| 10589ff6ff | |||
| bc23fd2876 | |||
| 0e4f1b0152 | |||
| 8003ecae4b | |||
| 02ac40391b | |||
| a55f3d6117 | |||
| 0b993e4035 | |||
| 5cb887292d | |||
| bcaaa755fb | |||
| cd1939e72d | |||
| ea5bded901 | |||
| 11bc18f47a | |||
| 09d0eed117 | |||
| 23ff827d24 | |||
| 67d84229a3 | |||
| 4e4319202b | |||
| 8216488f08 | |||
| 81d347b257 | |||
| 87de1e31a2 | |||
| 3281952099 | |||
| 15c13d6241 | |||
| 81bc5489b9 | |||
| 0943db01e6 | |||
| e8902ce792 | |||
| 2a58084d83 | |||
| 4a955b56ad | |||
| ede2273643 | |||
| bbb3ac388b | |||
| 9f4fb3fbda | |||
| 17ba369b37 | |||
| 3e5210b7a1 | |||
| 652e420618 | |||
| 403f0bb25e | |||
| bcf4ba0d8f | |||
| e72471d545 | |||
| ace2e14a2c | |||
| a72b015852 | |||
| dade8ced74 | |||
| 3a679489ed | |||
| 0381a0d289 | |||
| b7a6a615ee |
@@ -8,7 +8,13 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runson: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runson: [
|
||||
ubuntu-latest,
|
||||
ubuntu-20.04,
|
||||
macos-latest,
|
||||
windows-latest,
|
||||
windows-2019
|
||||
]
|
||||
uses: ./.github/workflows/actions-sync-e2e-test-called.yml
|
||||
with:
|
||||
runson: ${{ matrix.runson }}
|
||||
|
||||
@@ -3,14 +3,64 @@ on:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
CI:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Lint
|
||||
run: docker-compose run --rm lint
|
||||
- name: Test
|
||||
run: docker-compose run --rm test
|
||||
- name: E2E
|
||||
run: docker-compose run --rm test-build
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.21
|
||||
- name: Lint
|
||||
uses: golangci/golangci-lint-action@v4
|
||||
with:
|
||||
version: v1.54.2
|
||||
unit-test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.21
|
||||
- name: Unit Tests
|
||||
run: ./script/test
|
||||
e2e-test:
|
||||
needs: unit-test
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [linux]
|
||||
arch: [amd64, arm64]
|
||||
exclude:
|
||||
# Exclude Windows AMD64 because it's not supported
|
||||
- platform: windows
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: Setup QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.21
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build Binary for ${{ matrix.platform }}-${{ matrix.arch }}
|
||||
run: |
|
||||
if [[ "${{ matrix.platform }}" == "linux" ]]; then
|
||||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
||||
fi
|
||||
|
||||
GOOS=${{ matrix.platform }} GOARCH=${{ matrix.arch }} go build -o bin/actions-sync-${{ matrix.platform }}-${{ matrix.arch }} main.go
|
||||
|
||||
- name: Run End-to-End Tests for ${{ matrix.platform }}-${{ matrix.arch }}
|
||||
run: ./script/test-ci bin/actions-sync-${{ matrix.platform }}-${{ matrix.arch }}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
name: Close inactive issues
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
close-issues:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v5
|
||||
with:
|
||||
days-before-issue-stale: 30
|
||||
days-before-issue-close: 14
|
||||
stale-issue-label: "stale"
|
||||
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
|
||||
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
@@ -35,7 +35,7 @@ jobs:
|
||||
- run: go mod vendor
|
||||
|
||||
# Ruby is required for licensed
|
||||
- uses: ruby/setup-ruby@bc1dd263b68cb5626dbb55d5c89777d79372c484
|
||||
- uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899
|
||||
with:
|
||||
ruby-version: "3.2"
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ jobs:
|
||||
- name: Set CURRENT_TAG
|
||||
run: echo "GORELEASER_CURRENT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||
- name: Run GoReleaser
|
||||
uses: goreleaser/goreleaser-action@d50b0c42eeed7b45ad20ecc8046a958047efe1d5
|
||||
uses: goreleaser/goreleaser-action@v5
|
||||
with:
|
||||
version: latest
|
||||
args: release --clean
|
||||
|
||||
+2
-4
@@ -15,10 +15,8 @@ linters:
|
||||
- govet
|
||||
- unparam
|
||||
run:
|
||||
tests: true
|
||||
skip-files:
|
||||
- ".*_test\\.go$"
|
||||
modules-download-mode: vendor
|
||||
tests: true
|
||||
modules-download-mode: vendor
|
||||
issues:
|
||||
exclude-rules:
|
||||
- path: test/github.go
|
||||
|
||||
+23
-15
@@ -1,16 +1,24 @@
|
||||
project_name: gh
|
||||
|
||||
project_name: actions/actions-sync
|
||||
builds:
|
||||
- <<: &build_defaults
|
||||
binary: bin/actions-sync
|
||||
id: macos
|
||||
goos: [darwin]
|
||||
goarch: [amd64, arm64]
|
||||
- <<: *build_defaults
|
||||
id: linux
|
||||
goos: [linux]
|
||||
goarch: [amd64, arm64]
|
||||
- <<: *build_defaults
|
||||
id: windows
|
||||
goos: [windows]
|
||||
goarch: [amd64]
|
||||
- id: build
|
||||
goos:
|
||||
- linux
|
||||
- darwin
|
||||
- windows
|
||||
goarch:
|
||||
- amd64
|
||||
- arm64
|
||||
binary: bin/actions-sync
|
||||
ignore:
|
||||
- goos: windows
|
||||
goarch: arm64
|
||||
env:
|
||||
- CGO_ENABLED=0
|
||||
release:
|
||||
github:
|
||||
owner: actions
|
||||
name: actions-sync
|
||||
# Create the release as a draft so it can be tested before being published
|
||||
# To test, go to the Actions tab and run the "Actions Sync E2E Sanity Test" workflow
|
||||
draft: true
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/bitcurves
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/bitcurves
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/brainpool
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package brainpool implements Brainpool elliptic curves.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/brainpool
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/eax
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: 'Package eax provides an implementation of the EAX (encrypt-authenticate-translate)
|
||||
mode of operation, as described in Bellare, Rogaway, and Wagner "THE EAX MODE OF
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/internal/byteutil
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/internal/byteutil
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/ocb
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: 'Package ocb provides an implementation of the OCB (offset codebook) mode
|
||||
of operation, as described in RFC-7253 of the IRTF and in Rogaway, Bellare, Black
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package openpgp implements high level operations on OpenPGP messages.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/aes/keywrap
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package keywrap is an implementation of the RFC 3394 AES key wrapping algorithm.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp/aes/keywrap
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/armor
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package armor implements OpenPGP ASCII Armor, see RFC 4880.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp/armor
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/ecdh
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package ecdh implements ECDH encryption, suitable for OpenPGP, as specified
|
||||
in RFC 6637, section 8.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/ecdsa
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package ecdsa implements ECDSA signature, suitable for OpenPGP, as specified
|
||||
in RFC 6637, section 5.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/eddsa
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package eddsa implements EdDSA signature, suitable for OpenPGP, as specified
|
||||
in https://datatracker.ietf.org/doc/html/draft-ietf-openpgp-crypto-refresh-06#section-13.7
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/elgamal
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package elgamal implements ElGamal encryption, suitable for OpenPGP, as specified
|
||||
in "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms,"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/errors
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package errors contains common error types for the OpenPGP packages.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp/errors
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/internal/algorithm
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp/internal/algorithm
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/internal/ecc
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package ecc implements a generic interface for ECDH, ECDSA, and EdDSA.
|
||||
homepage: https://pkg.go.dev/github.com/ProtonMail/go-crypto/openpgp/internal/ecc
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/internal/encoding
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package encoding implements openpgp packet field encodings as specified in
|
||||
RFC 4880 and 6637.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/packet
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package packet implements parsing and serialization of OpenPGP packets, as
|
||||
specified in RFC 4880.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/ProtonMail/go-crypto/openpgp/s2k
|
||||
version: v0.0.0-20230828082145-3c4c8a2d2371
|
||||
version: v1.0.0
|
||||
type: go
|
||||
summary: Package s2k implements the various OpenPGP string-to-key transforms as specified
|
||||
in RFC 4800 section 3.7.1, and Argon2 specified in draft-ietf-openpgp-crypto-refresh-08
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: A highly extensible git implementation in pure Go.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/config
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package config contains the abstraction of multiple config files
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/config
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/internal/path_util
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/internal/path_util
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/internal/revision
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: 'Package revision extracts git revision from string More information about
|
||||
revision : https://www.kernel.org/pub/software/scm/git/docs/gitrevisions.html'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/internal/url
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/internal/url
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: package plumbing implement the core interfaces and structs used by go-git
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/cache
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/cache
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/color
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/color
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/filemode
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/filemode
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/config
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package config implements encoding and decoding of git config files.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/config
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/diff
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/diff
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/gitignore
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package gitignore implements matching file system paths to gitignore patterns
|
||||
that can be automatically read from a git repository tree in the order of definition
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/idxfile
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package idxfile implements encoding and decoding of packfile idx files.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/idxfile
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/index
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package index implements encoding and decoding of index format files.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/index
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/objfile
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package objfile implements encoding and decoding of object files.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/objfile
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/packfile
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package packfile implements encoding and decoding of packfile format.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/format/packfile
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/format/pktline
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package pktline implements reading payloads form pkt-lines and encoding pkt-lines
|
||||
from payloads.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/hash
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: package hash provides a way for managing the underlying hash implementations
|
||||
used across go-git.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/object
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package object contains implementations of all Git objects and utility functions
|
||||
to work with them.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/protocol/packp
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/protocol/packp
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package capability defines the server and client capabilities.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package sideband implements a sideband mutiplex/demultiplexer
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/revlist
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package revlist provides support to access the ancestors of commits, in a
|
||||
similar way as the git-rev-list command.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/storer
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package storer defines the interfaces to store objects, references, etc.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/storer
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package transport includes the implementation for different transport protocols.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/client
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package client contains helper function to deal with the different client
|
||||
protocols.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/file
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package file implements the file transport protocol.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/file
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/git
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package git implements the git transport protocol.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/git
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/http
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package http implements the HTTP transport protocol.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/http
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/internal/common
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package common implements the git pack protocol with a pluggable transport.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/internal/common
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/server
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package server implements the git server protocol.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/server
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/plumbing/transport/ssh
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package ssh implements the SSH transport protocol.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/plumbing/transport/ssh
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/storage
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/storage
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/storage/filesystem
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package filesystem is a storage backend base on filesystems
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/storage/filesystem
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/storage/filesystem/dotgit
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: https://github.com/git/git/blob/master/Documentation/gitrepository-layout.txt
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/storage/filesystem/dotgit
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/storage/memory
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package memory is a storage backend base on memory
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/storage/memory
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/binary
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package binary implements syntax-sugar functions on top of the standard library
|
||||
binary package
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/diff
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package diff implements line oriented diffs, similar to the ancient Unix
|
||||
diff command.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/ioutil
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package ioutil implements some I/O utility functions.
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/ioutil
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/merkletrie
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package merkletrie provides support for n-ary trees that are at the same
|
||||
time Merkle trees and Radix trees (tries).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/merkletrie/filesystem
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/merkletrie/filesystem
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/merkletrie/index
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/merkletrie/index
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/merkletrie/noder
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary: Package noder provide an interface for defining nodes in a merkletrie, their
|
||||
hashes and their paths (a noders and its ancestors).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/sync
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/sync
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/go-git/go-git/v5/utils/trace
|
||||
version: v5.11.0
|
||||
version: v5.12.0
|
||||
type: go
|
||||
summary:
|
||||
homepage: https://pkg.go.dev/github.com/go-git/go-git/v5/utils/trace
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/sergi/go-diff/diffmatchpatch
|
||||
version: v1.2.0
|
||||
version: v1.3.2-0.20230802210424-5b0b94c5c0d3
|
||||
type: go
|
||||
summary: Package diffmatchpatch offers robust algorithms to perform the operations
|
||||
required for synchronizing plain text.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: github.com/skeema/knownhosts
|
||||
version: v1.2.1
|
||||
version: v1.2.2
|
||||
type: go
|
||||
summary: Package knownhosts is a thin wrapper around golang.org/x/crypto/ssh/knownhosts,
|
||||
adding the ability to obtain the list of host key algorithms for a known host.
|
||||
@@ -212,7 +212,7 @@ licenses:
|
||||
limitations under the License.
|
||||
- sources: README.md
|
||||
text: |-
|
||||
**Source code copyright 2023 Skeema LLC and the Skeema Knownhosts authors**
|
||||
**Source code copyright 2024 Skeema LLC and the Skeema Knownhosts authors**
|
||||
|
||||
```text
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@@ -230,7 +230,7 @@ licenses:
|
||||
notices:
|
||||
- sources: NOTICE
|
||||
text: |-
|
||||
Copyright 2023 Skeema LLC and the Skeema Knownhosts authors
|
||||
Copyright 2024 Skeema LLC and the Skeema Knownhosts authors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/argon2
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package argon2 implements the key derivation function Argon2.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/argon2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/blake2b
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package blake2b implements the BLAKE2b hash algorithm defined by RFC 7693
|
||||
and the extendable output function (XOF) BLAKE2Xb.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/blowfish
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package blowfish implements Bruce Schneier's Blowfish encryption algorithm.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/blowfish
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/cast5
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package cast5 implements CAST5, as defined in RFC 2144.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/cast5
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/curve25519
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package curve25519 provides an implementation of the X25519 function, which
|
||||
performs scalar multiplication on the elliptic curve known as Curve25519.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package openpgp implements high level operations on OpenPGP messages.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/openpgp
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp/armor
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package armor implements OpenPGP ASCII Armor, see RFC 4880.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/openpgp/armor
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp/elgamal
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package elgamal implements ElGamal encryption, suitable for OpenPGP, as specified
|
||||
in "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms,"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp/errors
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package errors contains common error types for the OpenPGP packages.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/openpgp/errors
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp/packet
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package packet implements parsing and serialization of OpenPGP packets, as
|
||||
specified in RFC 4880.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/openpgp/s2k
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package s2k implements the various OpenPGP string-to-key transforms as specified
|
||||
in RFC 4800 section 3.7.1.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/sha3
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package sha3 implements the SHA-3 fixed-output-length hash functions and
|
||||
the SHAKE variable-output-length hash functions defined by FIPS-202.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/ssh
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package ssh implements an SSH client and server.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/ssh
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/ssh/agent
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package agent implements the ssh-agent protocol, and provides both a client
|
||||
and a server.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package bcrypt_pbkdf implements bcrypt_pbkdf(3) from OpenBSD.
|
||||
homepage: https://pkg.go.dev/golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/crypto/ssh/knownhosts
|
||||
version: v0.19.0
|
||||
version: v0.21.0
|
||||
type: go
|
||||
summary: Package knownhosts implements a parser for the OpenSSH known_hosts host key
|
||||
database, and provides utility functions for writing OpenSSH compliant known_hosts
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/net/context
|
||||
version: v0.21.0
|
||||
version: v0.23.0
|
||||
type: go
|
||||
summary: Package context defines the Context type, which carries deadlines, cancelation
|
||||
signals, and other request-scoped values across API boundaries and between processes.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/net/internal/socks
|
||||
version: v0.21.0
|
||||
version: v0.23.0
|
||||
type: go
|
||||
summary: Package socks provides a SOCKS version 5 client implementation.
|
||||
homepage: https://pkg.go.dev/golang.org/x/net/internal/socks
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/net/proxy
|
||||
version: v0.21.0
|
||||
version: v0.23.0
|
||||
type: go
|
||||
summary: Package proxy provides support for a variety of protocols to proxy network
|
||||
data.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/oauth2
|
||||
version: v0.17.0
|
||||
version: v0.19.0
|
||||
type: go
|
||||
summary: Package oauth2 provides support for making OAuth2 authorized and authenticated
|
||||
HTTP requests, as specified in RFC 6749.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/oauth2/internal
|
||||
version: v0.17.0
|
||||
version: v0.19.0
|
||||
type: go
|
||||
summary: Package internal contains support packages for oauth2 package.
|
||||
homepage: https://pkg.go.dev/golang.org/x/oauth2/internal
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/sys/execabs
|
||||
version: v0.17.0
|
||||
version: v0.18.0
|
||||
type: go
|
||||
summary: Package execabs is a drop-in replacement for os/exec that requires PATH lookups
|
||||
to find absolute paths.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: golang.org/x/sys/unix
|
||||
version: v0.17.0
|
||||
version: v0.18.0
|
||||
type: go
|
||||
summary: Package unix contains an interface to the low-level operating system primitives.
|
||||
homepage: https://pkg.go.dev/golang.org/x/sys/unix
|
||||
|
||||
+23
-23
@@ -1,23 +1,23 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
lint:
|
||||
image: lint
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.cibuild
|
||||
entrypoint:
|
||||
- script/lint
|
||||
test:
|
||||
image: test
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.cibuild
|
||||
entrypoint:
|
||||
- script/test
|
||||
test-build:
|
||||
image: test-build
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.cibuild
|
||||
entrypoint:
|
||||
- script/test-build
|
||||
# version: "3.5"
|
||||
# services:
|
||||
# lint:
|
||||
# image: lint
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: Dockerfile.cibuild
|
||||
# entrypoint:
|
||||
# - script/lint
|
||||
# test:
|
||||
# image: test
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: Dockerfile.cibuild
|
||||
# entrypoint:
|
||||
# - script/test
|
||||
# test-build:
|
||||
# image: test-build
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: Dockerfile.cibuild
|
||||
# entrypoint:
|
||||
# - script/test-build
|
||||
|
||||
@@ -3,19 +3,19 @@ module github.com/actions/actions-sync
|
||||
go 1.21
|
||||
|
||||
require (
|
||||
github.com/go-git/go-git/v5 v5.11.0
|
||||
github.com/go-git/go-git/v5 v5.12.0
|
||||
github.com/google/go-github/v43 v43.0.0
|
||||
github.com/gorilla/mux v1.8.1
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/spf13/cobra v1.8.0
|
||||
github.com/stretchr/testify v1.8.4
|
||||
golang.org/x/oauth2 v0.17.0
|
||||
github.com/stretchr/testify v1.9.0
|
||||
golang.org/x/oauth2 v0.19.0
|
||||
)
|
||||
|
||||
require (
|
||||
dario.cat/mergo v1.0.0 // indirect
|
||||
github.com/Microsoft/go-winio v0.6.1 // indirect
|
||||
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
|
||||
github.com/ProtonMail/go-crypto v1.0.0 // indirect
|
||||
github.com/cloudflare/circl v1.3.7 // indirect
|
||||
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
@@ -23,24 +23,21 @@ require (
|
||||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
||||
github.com/go-git/go-billy/v5 v5.5.0 // indirect
|
||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
||||
github.com/golang/protobuf v1.5.3 // indirect
|
||||
github.com/google/go-querystring v1.1.0 // indirect
|
||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
||||
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
||||
github.com/pjbgf/sha1cd v0.3.0 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/sergi/go-diff v1.2.0 // indirect
|
||||
github.com/skeema/knownhosts v1.2.1 // indirect
|
||||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
|
||||
github.com/skeema/knownhosts v1.2.2 // indirect
|
||||
github.com/spf13/pflag v1.0.5 // indirect
|
||||
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
||||
golang.org/x/crypto v0.19.0 // indirect
|
||||
golang.org/x/crypto v0.21.0 // indirect
|
||||
golang.org/x/mod v0.12.0 // indirect
|
||||
golang.org/x/net v0.21.0 // indirect
|
||||
golang.org/x/sys v0.17.0 // indirect
|
||||
golang.org/x/net v0.23.0 // indirect
|
||||
golang.org/x/sys v0.18.0 // indirect
|
||||
golang.org/x/tools v0.13.0 // indirect
|
||||
google.golang.org/appengine v1.6.7 // indirect
|
||||
google.golang.org/protobuf v1.31.0 // indirect
|
||||
gopkg.in/warnings.v0 v0.1.2 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
||||
|
||||
@@ -3,8 +3,8 @@ dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
|
||||
github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY=
|
||||
github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow=
|
||||
github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM=
|
||||
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 h1:kkhsdkhsCvIsutKu5zLMgWtgh9YxGCNAw8Ad8hjwfYg=
|
||||
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0=
|
||||
github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78=
|
||||
github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0=
|
||||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=
|
||||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4=
|
||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
|
||||
@@ -23,24 +23,19 @@ github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a h1:mATvB/9r/3gvcej
|
||||
github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM=
|
||||
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
|
||||
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
|
||||
github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY=
|
||||
github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4=
|
||||
github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE=
|
||||
github.com/gliderlabs/ssh v0.3.7/go.mod h1:zpHEXBstFnQYtGnB8k8kQLol82umzn/2/snG7alWVD8=
|
||||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI=
|
||||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic=
|
||||
github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU=
|
||||
github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow=
|
||||
github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4=
|
||||
github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII=
|
||||
github.com/go-git/go-git/v5 v5.11.0 h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4=
|
||||
github.com/go-git/go-git/v5 v5.11.0/go.mod h1:6GFcX2P3NM7FPBfpePbpLd21XxsgdAt+lKqXmCUiUCY=
|
||||
github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys=
|
||||
github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY=
|
||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=
|
||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
|
||||
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
|
||||
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
||||
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||
github.com/google/go-github/v43 v43.0.0 h1:y+GL7LIsAIF2NZlJ46ZoC/D1W1ivZasT0lnWHMYPZ+U=
|
||||
@@ -73,11 +68,11 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
|
||||
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
|
||||
github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
|
||||
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
|
||||
github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=
|
||||
github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
|
||||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8=
|
||||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4=
|
||||
github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||
github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ=
|
||||
github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo=
|
||||
github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A=
|
||||
github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo=
|
||||
github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
|
||||
github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho=
|
||||
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
|
||||
@@ -85,8 +80,8 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
||||
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
|
||||
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
|
||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
|
||||
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
|
||||
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||
@@ -95,13 +90,12 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y
|
||||
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
|
||||
golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU=
|
||||
golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo=
|
||||
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
|
||||
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
|
||||
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
|
||||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
|
||||
golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
|
||||
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
|
||||
golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
@@ -109,10 +103,10 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug
|
||||
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
|
||||
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
|
||||
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
|
||||
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
|
||||
golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ=
|
||||
golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA=
|
||||
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
|
||||
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
|
||||
golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg=
|
||||
golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8=
|
||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
@@ -131,17 +125,16 @@ golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
|
||||
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
|
||||
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
|
||||
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
||||
golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U=
|
||||
golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=
|
||||
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
|
||||
golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
|
||||
golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||
@@ -158,12 +151,6 @@ golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ=
|
||||
golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=
|
||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
|
||||
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
|
||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
|
||||
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
|
||||
@@ -171,6 +158,6 @@ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EV
|
||||
gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=
|
||||
gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI=
|
||||
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
|
||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
|
||||
@@ -4,7 +4,7 @@ if($IsLinux) {
|
||||
} elseif ($IsWindows) {
|
||||
$file_postfix = "windows_amd64"
|
||||
} elseif ($IsMacOS) {
|
||||
$file_postfix = "darwin_amd64"
|
||||
$file_postfix = "darwin_arm64"
|
||||
}
|
||||
|
||||
# Download release to test
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user