Skip to content

Commit

Permalink
Grc 243 migrate static aws credentials (#3386)
Browse files Browse the repository at this point in the history
  • Loading branch information
adutchak committed Sep 14, 2024
1 parent 42d0cff commit 2ffc2dc
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
jobs:
build-x86_64-binaries-tarball:
runs-on: ubuntu-20.04
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -72,6 +75,9 @@ jobs:
build-arm64-binaries-tarball:
runs-on: custom-arm64-focal
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
build-mac:
# The type of runner that the job will run on
runs-on: macos-12
permissions:
id-token: write
contents: read

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-public-ami.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
build-public-ami-and-upload:
runs-on: ubuntu-22.04
timeout-minutes: 45
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-ubuntu-amd64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
jobs:
build-jammy-amd64-package:
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -70,6 +73,9 @@ jobs:
build-focal-amd64-package:
runs-on: ubuntu-20.04
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-ubuntu-arm64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
jobs:
build-jammy-arm64-package:
runs-on: custom-arm64-jammy
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -70,6 +73,9 @@ jobs:
build-focal-arm64-package:
runs-on: custom-arm64-focal
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-win-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
build-win:
# The type of runner that the job will run on
runs-on: windows-2019
permissions:
id-token: write
contents: read

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down

0 comments on commit 2ffc2dc

Please sign in to comment.