mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +01:00
Remove AWS access key ID from version control (#2163)
This is to stop people's security software from complaining about it.
This commit is contained in:
parent
659f089531
commit
f3c1ccc335
1 changed files with 4 additions and 4 deletions
8
.github/workflows/mirror.yml
vendored
8
.github/workflows/mirror.yml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue