GithubHelp home page GithubHelp logo

awsutils's Issues

Add SSM xfer file to instance

Starting point:

func transferFileToInstance(instanceID, localFilePath, remoteFilePath string) error {
	// Create a new session using the default AWS SDK configuration
	sess, err := session.NewSessionWithOptions(session.Options{
		SharedConfigState: session.SharedConfigEnable,
	})
	if err != nil {
		return err
	}

	// Create a new SSM client
	svc := ssm.New(sess)

	// Read the contents of the local file
	localFileBytes, err := ioutil.ReadFile(localFilePath)
	if err != nil {
		return err
	}

	// Encode the file contents as a base64 string
	encodedFileContents := aws.String(bytes.ToString(localFileBytes))

	// Specify the parameters for the SendCommand API call
	params := &ssm.SendCommandInput{
		DocumentName: aws.String("AWS-RunShellScript"), // Use the AWS-RunShellScript document to execute shell commands
		InstanceIds:  []*string{aws.String(instanceID)}, // The ID of the instance you want to transfer the file to
		Parameters: map[string][]*string{ // The shell commands to execute
			"commands": {
				aws.String(fmt.Sprintf("echo '%s' | base64 -d > %s", *encodedFileContents, remoteFilePath)),
			},
		},
	}

	// Send the command and get the command ID
	resp, err := svc.SendCommand(params)
	if err != nil {
		return err
	}

	// Wait for the command to complete
	err = svc.WaitUntilCommandExecuted(&ssm.GetCommandInvocationInput{
		CommandId:  resp.Command.CommandId,
		InstanceId: aws.String(instanceID),
	})
	if err != nil {
		return err
	}

	return nil
}

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Location: .github/renovate.json5
Error type: Invalid JSON5 (parsing failed)
Message: JSON5.parse error: JSON5: invalid end of input at 28:1

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Errored

These updates encountered an error and will be retried. Click on a checkbox below to force a retry now.

  • chore(deps): update pre-commit hook adrienverge/yamllint to v1.30.0
  • fix(deps): update module github.com/fatih/color to v1.15.0
  • fix(deps): update module github.com/l50/goutils to v1.2.5

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, actions/setup-python, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, peter-evans/create-pull-request, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)
  • chore(deps): update renovatebot/github-action action to v36.0.2
  • chore(deps): update actions/checkout action to v3.5.0

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/pre-commit.yaml
  • actions/checkout v3.1.0
  • actions/setup-python v4
  • actions/setup-go v4
  • peter-evans/create-pull-request v4
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.0
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.14.1
  • github.com/l50/goutils v1.1.8
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.29.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3.5.0
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yaml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • renovatebot/github-action v36.0.2
.github/workflows/semgrep.yaml
  • actions/checkout v3.5.0
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3.5.0
  • actions/setup-go v4
  • aws-actions/configure-aws-credentials v2
  • shogo82148/actions-goveralls v1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Add this check to IsEC2Instance

If this filepath exists, we are on an ec2 instance:

/sys/devices/virtual/dmi/id/product_uuid

This may be more accurate than querying the metadata service.Β Let's do the following:

  1. Check for this filepath
  2. Check the metadata service

Fix function comment

awsutils/pkg/ec2/ec2.go

Lines 260 to 266 in 27e42ed

// IsEC2Instance checks whether the code is running on an AWS EC2 instance by checking the existence of the file
// /sys/devices/virtual/dmi/id/product_uuid. If the file exists, the code is running on an EC2 instance and the function
// returns true. If the file does not exist, the function queries the EC2 instance metadata service at
// http://169.254.169.254/latest/meta-data/instance-id. If the request succeeds and the response starts with "i-",
// indicating that the code is running on an EC2 instance, the function returns true. If both the file check and
// metadata endpoint request fail, the function returns false.
func IsEC2Instance() bool {

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • github/codeql-action v2@04df1262e6247151b5ac09cd2c303ac36ad3f62b
  • github/codeql-action v2@04df1262e6247151b5ac09cd2c303ac36ad3f62b
  • github/codeql-action v2@04df1262e6247151b5ac09cd2c303ac36ad3f62b
.github/workflows/goreleaser.yaml
  • actions/checkout v3@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • actions/setup-go v4@4d34df0c2316fe8122ab82dc22947d607c0c91f9
  • goreleaser/goreleaser-action v4@f82d6c1c344bcacabba2c841718984797f664a6b
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3@ba790c862c380240c6d5e7427be5ace9a05c754b
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • EndBug/label-sync v2.3.2@da00f2c11fdb78e4fae44adac2fdd713778ea3e8
.github/workflows/renovate.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • renovatebot/github-action v36.0.2@95cbcd7e8b9d0d69e15ba26208631839ce7eee48
.github/workflows/semgrep.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • returntocorp/semgrep-action v1@2e352e1a85f5c8722b894e67bed8b2f8874ad628
.github/workflows/tests.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • actions/setup-go v4@4d34df0c2316fe8122ab82dc22947d607c0c91f9
  • aws-actions/configure-aws-credentials v2@e1e17a757e536f70e52b5a12b2e8d1d1c60e04ef
  • shogo82148/actions-goveralls v1@31ee804b8576ae49f6dc3caa22591bc5080e7920
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • jumanjihouse/pre-commit-hooks 3.0.0
  • codespell-project/codespell v2.2.4
  • dnephin/pre-commit-golang v0.5.1

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • github/codeql-action v2@46ed16ded91731b2df79a2893d3aea8e9f03b5c4
  • github/codeql-action v2@46ed16ded91731b2df79a2893d3aea8e9f03b5c4
  • github/codeql-action v2@46ed16ded91731b2df79a2893d3aea8e9f03b5c4
.github/workflows/goreleaser.yaml
  • actions/checkout v3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • actions/setup-go v4@fac708d6674e30b6ba41289acaab6d4b75aa0753
  • goreleaser/goreleaser-action v4@336e29918d653399e599bfca99fadc1d7ffbc9f7
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.2.0@0967ca812e7fdc8f5f71402a1b486d5bd061fe20
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • EndBug/label-sync v2.3.2@da00f2c11fdb78e4fae44adac2fdd713778ea3e8
.github/workflows/pre-commit.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • actions/setup-python v4@bd6b4b6205c4dbad673328db7b31b7fab9e241c0
  • actions/setup-go v4@fac708d6674e30b6ba41289acaab6d4b75aa0753
.github/workflows/renovate.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • renovatebot/github-action v36.1.1@0da8b0cd8bb013041bad4f818c2790fa3253efb1
.github/workflows/semgrep.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • returntocorp/semgrep-action v1@316a1751c53ffb6689b8726910e8204ffb591b4f
.github/workflows/tests.yaml
  • actions/checkout v3.5.3@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
  • actions/setup-go v4@fac708d6674e30b6ba41289acaab6d4b75aa0753
  • aws-actions/configure-aws-credentials v2@5fd3084fc36e372ff1fff382a39b10d03659f355
  • shogo82148/actions-goveralls v1@df920a6a2468668dfcf71a0b43817f89eaa5ea04
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.280
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils/v2 v2.0.3
magefiles/go.mod
  • go 1.20
  • github.com/l50/goutils/v2 v2.0.8
  • github.com/magefile/mage v1.15.0
  • github.com/spf13/afero v1.9.5
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.32.0
  • pre-commit/mirrors-prettier v3.0.0
  • codespell-project/codespell v2.2.5
  • dnephin/pre-commit-golang v0.5.1
  • jumanjihouse/pre-commit-hooks 3.0.0

Create OnEC2Instance

Create a function, OnEC2Instance that will tell us if we are currently on an ec2 instance.

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)
  • chore(deps): update renovatebot/github-action action to v36.0.2
  • chore(deps): update actions/checkout action to v3.5.0

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.0
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.14.1
  • github.com/l50/goutils v1.1.8
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.29.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, actions/setup-python, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, peter-evans/create-pull-request, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)
  • chore(deps): update renovatebot/github-action action to v36.0.2
  • chore(deps): update actions/checkout action to v3.5.0

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/pre-commit.yaml
  • actions/checkout v3.1.0
  • actions/setup-python v4
  • actions/setup-go v4
  • peter-evans/create-pull-request v4
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.0
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.14.1
  • github.com/l50/goutils v1.1.8
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.29.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)
  • chore(deps): update renovatebot/github-action action to v36.0.2
  • chore(deps): update actions/checkout action to v3.5.0

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.0
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Errored

These updates encountered an error and will be retried. Click on a checkbox below to force a retry now.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3.5.0
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yaml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.5.0@8f4b7f84864484a7bf31766abe9204da3cbe65b3
  • renovatebot/github-action v36.0.2
.github/workflows/semgrep.yaml
  • actions/checkout v3.5.0
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3.5.0
  • actions/setup-go v4
  • aws-actions/configure-aws-credentials v2
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • chore(deps): pin dependencies (EndBug/label-sync, actions/checkout, actions/labeler, actions/setup-go, aws-actions/configure-aws-credentials, github/codeql-action, goreleaser/goreleaser-action, nashmaniac/create-issue-action, renovatebot/github-action, returntocorp/semgrep-action, shogo82148/actions-goveralls)
  • chore(deps): update actions/checkout action to v3.5.0

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.2
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

Renovate Dashboard πŸ€–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Other Branches

These updates are pending. To force PRs open, click the checkbox below.

  • #271
  • chore(deps): update renovatebot/github-action action to v36.0.2
  • chore(deps): update actions/checkout action to v3.5.0

Detected dependencies

github-actions
.github/workflows/codeql-analysis.yaml
  • actions/checkout v3
  • github/codeql-action v2
  • github/codeql-action v2
  • github/codeql-action v2
.github/workflows/goreleaser.yml
  • actions/checkout v3
  • actions/setup-go v4
  • goreleaser/goreleaser-action v4
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.0.3
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.3.0
  • EndBug/label-sync v2.3.2
.github/workflows/renovate.yaml
  • actions/checkout v3.3.0
  • renovatebot/github-action v36.0.0
.github/workflows/semgrep.yaml
  • actions/checkout v3
  • returntocorp/semgrep-action v1
.github/workflows/tests.yaml
  • actions/checkout v3
  • aws-actions/configure-aws-credentials v2
  • actions/setup-go v4
  • shogo82148/actions-goveralls v1
  • nashmaniac/create-issue-action v1.1
gomod
go.mod
  • go 1.20
  • github.com/aws/aws-sdk-go v1.44.232
  • github.com/google/uuid v1.3.0
  • github.com/l50/goutils v1.2.5
magefiles/go.mod
  • go 1.20
  • github.com/fatih/color v1.15.0
  • github.com/l50/goutils v1.2.5
  • github.com/magefile/mage v1.14.0
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.4.0
  • adrienverge/yamllint v1.30.0
  • pre-commit/mirrors-prettier v3.0.0-alpha.6
  • dnephin/pre-commit-golang v0.5.1
  • igorshubovych/markdownlint-cli v0.33.0
  • codespell-project/codespell v2.2.4

  • Check this box to trigger a request for Renovate to run again on this repository

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Error type: Cannot find preset's package (github>l50/awsutils//.github/renovate/commitMessage.json5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.