Skip to content

Bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.70 #3104

Bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.70

Bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.70 #3104

# Copyright © 2021 - 2023 SUSE LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Release Sandbox
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
paths-ignore:
- 'docs/**'
- 'README.md'
permissions:
contents: read
packages: read
env:
SETUP_GO_VERSION: '1.20.4'
jobs:
release:
runs-on: ubuntu-latest
permissions:
id-token: write # This is the key for OIDC!
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
timeout-minutes: 5
with:
cache: false
go-version: ${{ env.SETUP_GO_VERSION }}
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.CFCIBOT_DOCKERHUB_USERNAME }}
password: ${{ secrets.CFCIBOT_DOCKERHUB_PASSWORD }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- uses: anchore/sbom-action/download-syft@v0.14.3
- uses: sigstore/cosign-installer@v3.1.1
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: 1.20.0
args: release --clean --skip-publish --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
- name: Update Upgrade Responder Response JSON config (dry run)
run: ./scripts/upgrade-responder-release-update.sh
env:
COGNITO_USERNAME: ${{ secrets.UPGRADE_RESPONDER_COGNITO_USERNAME }}
COGNITO_PASSWORD: ${{ secrets.UPGRADE_RESPONDER_COGNITO_PASSWORD }}
COGNITO_CLIENT_ID: ${{ secrets.UPGRADE_RESPONDER_COGNITO_CLIENT_ID }}
EKS_ENDPOINT: ${{ secrets.UPGRADE_RESPONDER_EKS_ENDPOINT }}
K8S_NAMESPACE: epinio
K8S_DRY_RUN: client
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}