Skip to content
Snippets Groups Projects
Unverified Commit f3c1ccc3 authored by Mislav Marohnić's avatar Mislav Marohnić Committed by GitHub
Browse files

Remove AWS access key ID from version control (#2163)

This is to stop people's security software from complaining about it.
parent 659f0895
No related branches found
No related tags found
No related merge requests found
...@@ -19,12 +19,12 @@ jobs: ...@@ -19,12 +19,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 100
- name: Update download mirror - name: Update download mirror
run: script/mirror update "${BEFORE_REF}.." run: script/mirror update "${BEFORE_REF}.."
env: env:
BEFORE_REF: ${{ github.event.before }}${{ github.event.inputs.beforeRef }} BEFORE_REF: ${{ github.event.before }}${{ github.event.inputs.beforeRef }}
AMAZON_S3_BUCKET: ruby-build-mirror AMAZON_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: AKIAJKAUQVHU6X4CODDQ AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MIRROR_UPLOAD_SECRET }} AWS_SECRET_ACCESS_KEY: ${{ secrets.MIRROR_UPLOAD_SECRET }}
AWS_REGION: us-east-1 AWS_REGION: ${{ vars.AWS_REGION }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment