Skip to content

test #56

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 23 commits into from
Dec 10, 2023
Merged

test #56

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e5e1289
:arrow_up: Bump golang.org/x/net from 0.15.0 to 0.17.0
dependabot[bot] Oct 11, 2023
52b598d
Merge pull request #894 from elgohr/dependabot/go_modules/golang.org/…
elgohr Oct 11, 2023
2cae384
:arrow_up: Bump the aws-sdk group with 4 updates
dependabot[bot] Oct 16, 2023
5adadab
Merge pull request #895 from elgohr/dependabot/go_modules/aws-sdk-d4c…
elgohr Oct 16, 2023
bca974e
:arrow_up: Bump the aws-sdk group with 3 updates
dependabot[bot] Oct 23, 2023
9da99f8
Merge pull request #896 from elgohr/dependabot/go_modules/aws-sdk-741…
elgohr Oct 23, 2023
3a8c802
:arrow_up: Bump the aws-sdk group with 2 updates
dependabot[bot] Oct 30, 2023
829ba17
Merge pull request #897 from elgohr/dependabot/go_modules/aws-sdk-2e7…
elgohr Oct 30, 2023
55e90e4
:arrow_up: Bump the docker group with 2 updates
dependabot[bot] Oct 30, 2023
3cd58cc
Merge pull request #898 from elgohr/dependabot/go_modules/docker-ff2e…
elgohr Oct 30, 2023
6daaa08
:arrow_up: Bump the aws-sdk group with 4 updates
dependabot[bot] Nov 6, 2023
109c5f6
Merge pull request #899 from elgohr/dependabot/go_modules/aws-sdk-74c…
elgohr Nov 6, 2023
7cd6723
:arrow_up: Bump the aws-sdk group with 4 updates
dependabot[bot] Nov 13, 2023
21b21fd
Merge pull request #900 from elgohr/dependabot/go_modules/aws-sdk-561…
elgohr Nov 13, 2023
958a9ff
:arrow_up: Bump the aws-sdk group with 4 updates
dependabot[bot] Dec 4, 2023
e1915e8
:bug: Handle non-initialized ports when using individual ports
elgohr Dec 6, 2023
fb04067
Merge branch 'main' into dependabot/go_modules/aws-sdk-6e839e1985
elgohr Dec 6, 2023
4a09c41
:bug: Adapt retry counter in tests
elgohr Dec 6, 2023
b614753
:construction_worker: Merge advanced security into main flow
elgohr Dec 6, 2023
71c146c
Merge branch 'main' into dependabot/go_modules/aws-sdk-6e839e1985
elgohr Dec 6, 2023
46aafb2
Merge pull request #904 from elgohr/dependabot/go_modules/aws-sdk-6e8…
elgohr Dec 6, 2023
7f99854
:recycle: Adapt running check for slow hosts
elgohr Dec 6, 2023
a0a62c6
Merge branch 'main' into dev
NxPKG Dec 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 0 additions & 23 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

20 changes: 19 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,26 @@ jobs:
uses: codecov/codecov-action@v3
with:
file: coverage.txt
advanced-security:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '^1.21'
- uses: github/codeql-action/init@v2
with:
languages: 'go'
- uses: github/codeql-action/autobuild@v2
- uses: github/codeql-action/analyze@v2
release:
needs: [ test ]
needs:
- test
- advanced-security
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
Expand Down
43 changes: 21 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,34 @@ module github.com/elgohr/go-localstack
go 1.18

require (
github.com/Masterminds/semver/v3 v3.1.1
github.com/aws/aws-sdk-go v1.44.47
github.com/aws/aws-sdk-go-v2 v1.16.6
github.com/aws/aws-sdk-go-v2/config v1.15.12
github.com/aws/aws-sdk-go-v2/credentials v1.12.7
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.15.8
github.com/aws/aws-sdk-go-v2/service/sqs v1.18.7
github.com/docker/docker v20.10.17+incompatible
github.com/Masterminds/semver/v3 v3.2.1
github.com/aws/aws-sdk-go v1.48.11
github.com/aws/aws-sdk-go-v2 v1.23.5
github.com/aws/aws-sdk-go-v2/config v1.25.11
github.com/aws/aws-sdk-go-v2/credentials v1.16.9
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.26.3
github.com/docker/docker v24.0.7+incompatible
github.com/docker/go-connections v0.4.0
github.com/maxbrunsfeld/counterfeiter/v6 v6.7.0
github.com/moby/moby v24.0.6+incompatible
github.com/moby/moby v24.0.7+incompatible
github.com/opencontainers/image-spec v1.0.2
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
)

require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.12 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.42 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.36 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.44 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.15 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.7.36 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.36 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.15.1 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.2 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.23.1 // indirect
github.com/aws/smithy-go v1.15.0 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.9 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.8 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.8 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.3 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.8.9 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.8 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.18.2 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.2 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.26.2 // indirect
github.com/aws/smithy-go v1.18.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/go-units v0.5.0 // indirect
Expand All @@ -44,8 +43,8 @@ require (
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
golang.org/x/tools v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading