Skip to content

Commit

Permalink
Remove AWS access key ID from version control (#2163)
Browse files Browse the repository at this point in the history
This is to stop people's security software from complaining about it.
  • Loading branch information
mislav committed Mar 10, 2023
1 parent 659f089 commit f3c1ccc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 100
- name: Update download mirror
run: script/mirror update "${BEFORE_REF}.."
env:
BEFORE_REF: ${{ github.event.before }}${{ github.event.inputs.beforeRef }}
AMAZON_S3_BUCKET: ruby-build-mirror
AWS_ACCESS_KEY_ID: AKIAJKAUQVHU6X4CODDQ
AMAZON_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MIRROR_UPLOAD_SECRET }}
AWS_REGION: us-east-1
AWS_REGION: ${{ vars.AWS_REGION }}

0 comments on commit f3c1ccc

Please sign in to comment.