From 1aee0512729562cd80ac11aecc9dfe71c12313a6 Mon Sep 17 00:00:00 2001 From: Daniel Morris Date: Mon, 22 Apr 2024 10:56:34 +0100 Subject: [PATCH] chore: Update version numbers in the README --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9b6a7a0..904f8c6 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,9 @@ The following snippet shows the minimum required configuration to create a working OIDC connection between GitHub Actions and AWS. ```terraform -provider "aws" { - region = var.region -} - module "oidc_github" { source = "unfunco/oidc-github/aws" - version = "1.7.1" + version = "1.8.0" github_repositories = [ "org/repo", @@ -54,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v4 with: aws-region: ${{ env.AWS_REGION }} role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/github