From 71bf33b2e454f9538d71949caf64683445876b08 Mon Sep 17 00:00:00 2001 From: Eric Busalacchi Date: Fri, 31 May 2024 10:07:00 -0400 Subject: [PATCH 1/2] Mention SES Creds are Region Specific, fix broken URL --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47b7615..ab2fb10 100644 --- a/README.md +++ b/README.md @@ -754,10 +754,16 @@ There's no need to configure DKIM or SPF, as Gmail will add these headers automa If your application runs in Amazon Elastic Compute Cloud (Amazon EC2), you can use Amazon SES to send up to 62,000 emails every month at no additional charge. You'll need an AWS account and SMTP credentials. The SMTP settings are available -on the SES page. For example, for `eu-central-1`: +on the SES page. -- see the [SES page for details](https://eu-central-1.console.aws.amazon.com/ses/home?region=eu-central-1#smtp-settings), -- [create the user credentials](https://console.aws.amazon.com/iam/home?#s=SESHomeV4/eu-central-1) +For example, for `eu-central-1`: + +- Please See the [SES Page for Details](https://eu-central-1.console.aws.amazon.com/ses/home?region=eu-central-1#smtp) + +You need Amazon SES SMTP credentials to access the SES SMTP interface. +**NOTE:** Your SMTP password is different from your AWS secret access key. Additionally, the credentials that you use to send email through the SES SMTP interface are unique to each _AWS Region_. If you use the SES SMTP interface to send email in more than one Region, you must generate a set of SMTP credentials for each Region that you plan to use. + +- [Create or Obtain the User Credentials](https://docs.aws.amazon.com/ses/latest/dg/smtp-credentials.html) **Make sure you write the user credentials down, as you will only see them once.** From 92ab9769d89f56d2f373622d9ce28793a15c9b82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 03:01:39 +0000 Subject: [PATCH 2/2] Build(deps): Bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/master.yml | 6 +++--- .github/workflows/pull_request.yml | 2 +- .github/workflows/tags.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 12e05d0..5ccc5a0 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -84,7 +84,7 @@ jobs: update-binfmts --enable - name: Build and push Alpine - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true @@ -132,7 +132,7 @@ jobs: ${{ runner.os }}-ubuntu- - name: Build and push Ubuntu - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true @@ -176,7 +176,7 @@ jobs: ${{ runner.os }}-debian- - name: Build and push Debian - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b91b8c4..7a1e24f 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -65,7 +65,7 @@ jobs: update-binfmts --enable - name: Build Alpine - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: false diff --git a/.github/workflows/tags.yml b/.github/workflows/tags.yml index c679370..b4b512e 100644 --- a/.github/workflows/tags.yml +++ b/.github/workflows/tags.yml @@ -89,7 +89,7 @@ jobs: update-binfmts --enable - name: Build and push Alpine - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true @@ -141,7 +141,7 @@ jobs: ${{ runner.os }}-ubuntu- - name: Build and push Ubuntu - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true @@ -191,7 +191,7 @@ jobs: ${{ runner.os }}-debian- - name: Build and push Debian - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true