diff --git a/.github/workflows/update-dependencies-from-metadata.yml b/.github/workflows/update-dependencies-from-metadata.yml index 43e89c0..1b25cff 100644 --- a/.github/workflows/update-dependencies-from-metadata.yml +++ b/.github/workflows/update-dependencies-from-metadata.yml @@ -5,12 +5,6 @@ on: schedule: - cron: '57 13 * * *' # daily at 13:57 UTC -env: - AWS_REGION : "us-east-1" -permissions: - id-token: write # This is required for requesting the JWT - contents: write # This is required for actions/checkout - jobs: retrieve: name: Retrieve New Versions and Generate Metadata @@ -27,7 +21,6 @@ jobs: steps: - name: Check out code uses: actions/checkout@v3 - - name: Setup Go uses: actions/setup-go@v3 @@ -228,22 +221,6 @@ jobs: echo "artifact-file=$(basename ./*.tgz)" >> "$GITHUB_OUTPUT" echo "checksum-file=$(basename ./*.tgz.checksum)" >> "$GITHUB_OUTPUT" - - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v2 - with: - role-to-assume: ${{ secrets.ROLE }} - aws-region: ${{ env.AWS_REGION }} - - - - name: Upload to S3 - id: upload - uses: initializ-buildpacks/github-config/actions/dependency/upload-to-s3@main - with: - bucket-name: "initializ-buildpacks" - dependency-name: ${{ needs.retrieve.outputs.id }} - artifact-path: ${{ steps.get-file-names.outputs.artifact-file }} - - name: Get Checksum id: get-checksum run: echo "checksum=$(cat ${{ steps.get-file-names.outputs.checksum-file }})" >> "$GITHUB_OUTPUT" @@ -327,7 +304,6 @@ jobs: if: ${{ steps.commit.outputs.commit_sha != '' }} uses: initializ-buildpacks/github-config/actions/pull-request/push-branch@main with: - token: ${{ secrets.PAT }} branch: automations/dependencies/update-from-metadata - name: Open Pull Request diff --git a/.github/workflows/update-go-mod-version.ym b/.github/workflows/update-go-mod-version.yml similarity index 100% rename from .github/workflows/update-go-mod-version.ym rename to .github/workflows/update-go-mod-version.yml