diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md old mode 100755 new mode 100644 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md old mode 100755 new mode 100644 diff --git a/.github/actions/e2e-profile/action.yaml b/.github/actions/e2e-profile/action.yaml index b9711e2405..63cde6dee6 100644 --- a/.github/actions/e2e-profile/action.yaml +++ b/.github/actions/e2e-profile/action.yaml @@ -41,11 +41,11 @@ runs: --output profiles/${svc}-${t}.pb done done - - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + - uses: actions/upload-artifact@v7 with: name: profiles path: profiles/* - - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 + - uses: actions/cache@v6 id: cache with: path: ./profiles-main @@ -92,7 +92,7 @@ runs: fi done done - - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + - uses: actions/upload-artifact@v7 with: name: graphs path: graphs/* diff --git a/.github/actions/notify-slack/action.yaml b/.github/actions/notify-slack/action.yaml index e84bb63638..f151ad08d4 100644 --- a/.github/actions/notify-slack/action.yaml +++ b/.github/actions/notify-slack/action.yaml @@ -32,10 +32,10 @@ inputs: runs: using: "composite" steps: - - uses: technote-space/workflow-conclusion-action@45ce8e0eb155657ab8ccf346ade734257fd196a5 # v3.0.3 + - uses: technote-space/workflow-conclusion-action@v3 with: GITHUB_TOKEN: ${{ inputs.token }} - - uses: 8398a7/action-slack@77eaa4f1c608a7d68b38af4e3f739dcd8cba273e # v3.19.0 + - uses: 8398a7/action-slack@v3 with: author_name: ${{ inputs.author_name }} status: ${{ inputs.status != '' && inputs.status || env.WORKFLOW_CONCLUSION }} diff --git a/.github/actions/scan-docker-image/action.yaml b/.github/actions/scan-docker-image/action.yaml index 9380e607da..833b79de77 100644 --- a/.github/actions/scan-docker-image/action.yaml +++ b/.github/actions/scan-docker-image/action.yaml @@ -28,7 +28,7 @@ runs: using: "composite" steps: - name: Run vulnerability scanner (table) - uses: aquasecurity/trivy-action@2736533278103862a861f4a35ebac3e97854d956 + uses: aquasecurity/trivy-action@master with: image-ref: ${{ inputs.image_ref }} format: "table" @@ -36,7 +36,7 @@ runs: severity: ${{ inputs.severity }} timeout: 30m - name: Run vulnerability scanner (sarif) - uses: aquasecurity/trivy-action@2736533278103862a861f4a35ebac3e97854d956 + uses: aquasecurity/trivy-action@master with: image-ref: ${{ inputs.image_ref }} format: "sarif" @@ -45,6 +45,6 @@ runs: severity: ${{ inputs.severity }} timeout: 30m - name: Upload Trivy scan results to Security tab - uses: github/codeql-action/upload-sarif@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 + uses: github/codeql-action/upload-sarif@v4 with: sarif_file: "trivy-results.sarif" diff --git a/.github/actions/setup-go/action.yaml b/.github/actions/setup-go/action.yaml index 6d53d10d8c..b94e129ba7 100644 --- a/.github/actions/setup-go/action.yaml +++ b/.github/actions/setup-go/action.yaml @@ -43,7 +43,7 @@ runs: fi - name: Setup Go (if not installed or version mismatch) if: steps.check_go.outputs.go_installed == 'false' || steps.check_go.outputs.installed_version != steps.go_version.outputs.version - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 + uses: actions/setup-go@v7 with: go-version: ${{ steps.go_version.outputs.version }} - name: Verify Go version diff --git a/.github/actions/setup-helm/action.yaml b/.github/actions/setup-helm/action.yaml index 1a98e0b5a9..7484e10628 100644 --- a/.github/actions/setup-helm/action.yaml +++ b/.github/actions/setup-helm/action.yaml @@ -43,7 +43,7 @@ runs: fi - name: Setup Helm (if not installed or version mismatch) if: steps.check_helm.outputs.helm_installed == 'false' || steps.check_helm.outputs.installed_version != steps.helm_version.outputs.version - uses: azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1 + uses: azure/setup-helm@v5 with: version: ${{ steps.helm_version.outputs.version }} - name: Verify Helm version diff --git a/.github/workflows/_detect-ci-container.yaml b/.github/workflows/_detect-ci-container.yaml index 33d58d2198..e3fc4d5206 100644 --- a/.github/workflows/_detect-ci-container.yaml +++ b/.github/workflows/_detect-ci-container.yaml @@ -48,7 +48,7 @@ jobs: outputs: TAG: ${{ steps.get_tag_name.outputs.TAG }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Determine Docker image tag diff --git a/.github/workflows/_docker-image-scan.yaml b/.github/workflows/_docker-image-scan.yaml index 8e1213115f..a36093af56 100644 --- a/.github/workflows/_docker-image-scan.yaml +++ b/.github/workflows/_docker-image-scan.yaml @@ -28,7 +28,7 @@ jobs: contents: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/_docker-image.yaml b/.github/workflows/_docker-image.yaml index 7ec0917e29..d147e2b33d 100644 --- a/.github/workflows/_docker-image.yaml +++ b/.github/workflows/_docker-image.yaml @@ -49,7 +49,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -94,7 +94,7 @@ jobs: else echo ref=${{ github.sha }} >> $GITHUB_OUTPUT fi - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false ref: ${{ steps.ref.outputs.ref }} @@ -153,7 +153,7 @@ jobs: include: ${{ fromJson(needs.prepare.outputs.matrix) }} runs-on: ${{ matrix.runs-on }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false ref: ${{ needs.prepare.outputs.ref }} @@ -189,14 +189,14 @@ jobs: sleep 20 done - name: Login to GitHub Container Registry - uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} - name: Setup Docker Buildx id: buildx - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0 + uses: docker/setup-buildx-action@v4 with: version: latest platforms: linux/${{ matrix.arch }} @@ -228,7 +228,7 @@ jobs: runs-on: ubuntu-latest needs: [build, prepare] steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false ref: ${{ needs.prepare.outputs.ref }} @@ -261,14 +261,14 @@ jobs: sleep 20 done - name: Login to GitHub Container Registry - uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} - name: Setup Docker Buildx id: buildx - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0 + uses: docker/setup-buildx-action@v4 with: version: latest driver-opts: | @@ -292,7 +292,7 @@ jobs: needs: [merge] if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/notify-slack diff --git a/.github/workflows/_release-pr.yaml b/.github/workflows/_release-pr.yaml index 5f032dab03..ae4da955f1 100644 --- a/.github/workflows/_release-pr.yaml +++ b/.github/workflows/_release-pr.yaml @@ -43,7 +43,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -70,7 +70,7 @@ jobs: PREPARE_RELEASE_BRANCH_NAME: prepare/${{ inputs.release_branch_name }} RELEASE_TAG: ${{ inputs.release_tag }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -78,7 +78,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index 7421bffc72..b94be3fcbe 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -31,7 +31,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-slim needs: [dump-contexts-to-log] steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -50,7 +50,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true diff --git a/.github/workflows/build-binaries.yaml b/.github/workflows/build-binaries.yaml index 07448cb875..e48d098daf 100644 --- a/.github/workflows/build-binaries.yaml +++ b/.github/workflows/build-binaries.yaml @@ -25,7 +25,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -45,7 +45,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 10 @@ -56,7 +56,7 @@ jobs: run: | make binary/build/zip - name: Upload artifact - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + uses: actions/upload-artifact@v7 with: name: artifacts-linux path: ./artifacts/ @@ -69,11 +69,11 @@ jobs: needs: - build-linux steps: - - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 + - uses: actions/download-artifact@v8 with: name: artifacts-linux path: tmp/linux - - uses: shogo82148/actions-upload-release-asset@394b3c11c3cfc038b5396ad265c074065cf875c3 # v1.10.2 + - uses: shogo82148/actions-upload-release-asset@v1 with: upload_url: ${{ github.event.release.upload_url }} asset_path: tmp/linux/vald-*.zip diff --git a/.github/workflows/build-protobuf.yaml b/.github/workflows/build-protobuf.yaml index 1d2b9970c4..60157e097d 100644 --- a/.github/workflows/build-protobuf.yaml +++ b/.github/workflows/build-protobuf.yaml @@ -34,7 +34,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -54,7 +54,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/chatops-help.yaml b/.github/workflows/chatops-help.yaml index 7784b15fb2..05ce3b6753 100644 --- a/.github/workflows/chatops-help.yaml +++ b/.github/workflows/chatops-help.yaml @@ -24,7 +24,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context diff --git a/.github/workflows/chatops.yaml b/.github/workflows/chatops.yaml index 55164a976b..2467917739 100644 --- a/.github/workflows/chatops.yaml +++ b/.github/workflows/chatops.yaml @@ -45,7 +45,7 @@ jobs: if: ${{ !contains(fromJSON('["cloudflare-workers-and-pages", "coderabbitai", "vdaas-ci", "all-contributors"]'), github.event.comment.user.login) }} runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -152,7 +152,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} BRANCH: ${{ steps.check_comments_rebase.outputs.BRANCH_NAME }} - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 if: steps.check_comments_rebase.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' with: persist-credentials: false @@ -163,7 +163,7 @@ jobs: git config --global --add safe.directory ${GITHUB_WORKSPACE} - name: Automatic Rebase if: steps.check_comments_rebase.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' - uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 + uses: cirrus-actions/rebase@1.8 env: GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} - name: Failure comment @@ -228,7 +228,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} PR_AUTHOR: ${{ github.event.issue.user.login }} - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 if: steps.check_comments_gen_test.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' with: persist-credentials: false @@ -236,7 +236,7 @@ jobs: - name: set git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 if: steps.check_comments_gen_test.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} @@ -337,7 +337,7 @@ jobs: $API_URL env: GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 if: steps.check_comments_format.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' with: persist-credentials: false @@ -346,7 +346,7 @@ jobs: - name: set git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 if: steps.check_comments_format.outputs.BOOL_TRIGGERED == 'true' && steps.check_permissions.outputs.EXECUTABLE == 'true' with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} diff --git a/.github/workflows/check-conflict.yaml b/.github/workflows/check-conflict.yaml index 93b26e4078..5f5e2b558e 100644 --- a/.github/workflows/check-conflict.yaml +++ b/.github/workflows/check-conflict.yaml @@ -23,7 +23,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -34,7 +34,7 @@ jobs: if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false }} runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 965fb5696e..599eaf4666 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -80,7 +80,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} steps: - name: Checkout repository - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + uses: actions/checkout@v7 with: persist-credentials: false # We must fetch at least the immediate parents so that if this is @@ -90,15 +90,15 @@ jobs: run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - name: Initialize CodeQL - uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} config-file: ./.github/codeql/codeql-config.yaml - name: Autobuild if: matrix.language == 'go' - uses: github/codeql-action/autobuild@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index a48f471aa3..7b862a7cfe 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -37,7 +37,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -57,7 +57,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 10 @@ -69,7 +69,7 @@ jobs: run: | make coverage - name: Upload coverage report to Codecov - uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 + uses: codecov/codecov-action@v7 with: token: ${{secrets.CODECOV_TOKEN}} files: ./coverage.out diff --git a/.github/workflows/detect-internal-config-changes.yaml b/.github/workflows/detect-internal-config-changes.yaml index 30bedb05e4..9cdb57e1ed 100644 --- a/.github/workflows/detect-internal-config-changes.yaml +++ b/.github/workflows/detect-internal-config-changes.yaml @@ -26,7 +26,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context diff --git a/.github/workflows/dockers-image-scan.yaml b/.github/workflows/dockers-image-scan.yaml index a16de5206c..29e09ce914 100644 --- a/.github/workflows/dockers-image-scan.yaml +++ b/.github/workflows/dockers-image-scan.yaml @@ -27,7 +27,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context diff --git a/.github/workflows/e2e-max-dim.yaml b/.github/workflows/e2e-max-dim.yaml index 16a708fcec..18f6b11f73 100644 --- a/.github/workflows/e2e-max-dim.yaml +++ b/.github/workflows/e2e-max-dim.yaml @@ -31,7 +31,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -54,7 +54,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} options: "--add-host host.docker.internal:host-gateway" steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config @@ -139,7 +139,7 @@ jobs: runs-on: ubuntu-slim if: startsWith( github.ref, 'refs/tags/') steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/notify-slack diff --git a/.github/workflows/e2e.v2.yaml b/.github/workflows/e2e.v2.yaml index 3032205750..c79989574b 100644 --- a/.github/workflows/e2e.v2.yaml +++ b/.github/workflows/e2e.v2.yaml @@ -34,7 +34,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -51,7 +51,7 @@ jobs: outputs: result: ${{ steps.build-matrix.outputs.result }} steps: - - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 + - uses: actions/github-script@v9 id: build-matrix with: result-encoding: string @@ -131,7 +131,7 @@ jobs: needs: [detect-ci-container] runs-on: ubuntu-latest steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false # Match the ref the dev-container build labels the image from @@ -206,7 +206,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} options: "--add-host host.docker.internal:host-gateway" steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config @@ -364,7 +364,7 @@ jobs: - e2e runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/notify-slack diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index e3ab2db59d..be210de7bc 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -50,7 +50,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -58,7 +58,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true @@ -99,7 +99,7 @@ jobs: fi - name: Create PR if: ${{ steps.check_diff.outputs.HAS_GIT_DIFF == 'true' }} - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 + uses: peter-evans/create-pull-request@v8 with: author: "${{ secrets.DISPATCH_USER }} " token: ${{ secrets.DISPATCH_TOKEN }} @@ -124,7 +124,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/fossa.yaml b/.github/workflows/fossa.yaml index cfa7d160ac..c73c77f028 100644 --- a/.github/workflows/fossa.yaml +++ b/.github/workflows/fossa.yaml @@ -29,7 +29,7 @@ jobs: if: github.ref == 'refs/heads/main' || github.event.action == 'labeled' && github.event.label.name == 'actions/fossa' runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -51,7 +51,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/github-actions-workflow-linter.yaml b/.github/workflows/github-actions-workflow-linter.yaml index 24b2a67e8c..884306dd14 100644 --- a/.github/workflows/github-actions-workflow-linter.yaml +++ b/.github/workflows/github-actions-workflow-linter.yaml @@ -36,13 +36,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@v7 with: fetch-depth: 0 persist-credentials: false - name: Set up Go - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 + uses: actions/setup-go@v7 with: go-version-file: versions/GO_VERSION cache: true diff --git a/.github/workflows/helm-lint.yaml b/.github/workflows/helm-lint.yaml index 50a4201054..460c2fc7f5 100644 --- a/.github/workflows/helm-lint.yaml +++ b/.github/workflows/helm-lint.yaml @@ -33,7 +33,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -57,7 +57,7 @@ jobs: charts: ${{ steps.resolve.outputs.charts }} steps: - name: Check out code. - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + uses: actions/checkout@v7 with: persist-credentials: false - name: set git config @@ -89,7 +89,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} steps: - name: Check out code. - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + uses: actions/checkout@v7 with: persist-credentials: false - name: set git config @@ -120,7 +120,7 @@ jobs: options: "--add-host=host.docker.internal:host-gateway" steps: - name: Check out code. - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + uses: actions/checkout@v7 with: persist-credentials: false - name: set git config diff --git a/.github/workflows/helm.yaml b/.github/workflows/helm.yaml index b678de39fe..80b7dfbaaa 100644 --- a/.github/workflows/helm.yaml +++ b/.github/workflows/helm.yaml @@ -28,7 +28,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -50,7 +50,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} options: "--add-host host.docker.internal:host-gateway" steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -58,7 +58,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true @@ -94,7 +94,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/issue-metrics.yaml b/.github/workflows/issue-metrics.yaml index 6fafb7dc51..9ab2ca2d07 100644 --- a/.github/workflows/issue-metrics.yaml +++ b/.github/workflows/issue-metrics.yaml @@ -53,13 +53,13 @@ jobs: env: TIME_WINDOW: ${{ github.event.inputs.time_window }} - name: Run issue-metrics tool - uses: github/issue-metrics@df8c49d20958f9345281fa2124858bd0ad227e1f # v5.0.0 + uses: github/issue-metrics@v5 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} SEARCH_QUERY: "repo:vdaas/vald is:pr created:${{ env.last_month }}" HIDE_TIME_TO_ANSWER: true - name: Create issue - uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0 + uses: peter-evans/create-issue-from-file@v6 with: title: "Monthly review time metrics report: ${{ env.last_month }}" token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/labeler.yaml b/.github/workflows/labeler.yaml index 4a41fb1b57..0d46422819 100644 --- a/.github/workflows/labeler.yaml +++ b/.github/workflows/labeler.yaml @@ -23,7 +23,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-slim if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false) }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false ref: ${{ github.head_ref }} @@ -45,7 +45,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0 + - uses: actions/labeler@v7 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" configuration-path: ".github/labeler.yaml" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 20e2b6f9d2..37cbb39e7b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,7 +30,7 @@ jobs: ${{ github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, ':bookmark: :robot: Release') }} runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -42,7 +42,7 @@ jobs: - dump-contexts-to-log runs-on: ubuntu-latest steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -50,7 +50,7 @@ jobs: - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true @@ -70,7 +70,7 @@ jobs: git push origin ${VERSION} echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT - name: Create release - uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1 + uses: softprops/action-gh-release@v3 env: GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} with: diff --git a/.github/workflows/reviewdog-hadolint.yaml b/.github/workflows/reviewdog-hadolint.yaml index 5fdeb28e54..89c8f484a4 100644 --- a/.github/workflows/reviewdog-hadolint.yaml +++ b/.github/workflows/reviewdog-hadolint.yaml @@ -25,7 +25,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -38,7 +38,7 @@ jobs: name: runner / hadolint runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -46,7 +46,7 @@ jobs: run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - name: Run hadolint - uses: reviewdog/action-hadolint@1b2cfa6ba72072ad35158d7ff3aa49bbdc03506d # v1.51.0 + uses: reviewdog/action-hadolint@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-review diff --git a/.github/workflows/reviewdog-k8s.yaml b/.github/workflows/reviewdog-k8s.yaml index 6548409810..fef2b581a3 100644 --- a/.github/workflows/reviewdog-k8s.yaml +++ b/.github/workflows/reviewdog-k8s.yaml @@ -35,7 +35,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -58,7 +58,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -87,7 +87,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -115,7 +115,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/reviewdog-markdown.yaml b/.github/workflows/reviewdog-markdown.yaml index 3242ebdb0d..e56c9a5715 100644 --- a/.github/workflows/reviewdog-markdown.yaml +++ b/.github/workflows/reviewdog-markdown.yaml @@ -26,7 +26,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -39,7 +39,7 @@ jobs: name: runner / LanguageTool / apis & charts runs-on: ubuntu-latest steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -47,7 +47,7 @@ jobs: run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - name: LanguageTool - uses: reviewdog/action-languagetool@afd06e9b0f782c9562c92efffb66a49c09b2b4f4 # v1.23.0 + uses: reviewdog/action-languagetool@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-review @@ -64,7 +64,7 @@ jobs: name: runner / LanguageTool / Docs runs-on: ubuntu-latest steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -72,7 +72,7 @@ jobs: run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - name: LanguageTool - uses: reviewdog/action-languagetool@afd06e9b0f782c9562c92efffb66a49c09b2b4f4 # v1.23.0 + uses: reviewdog/action-languagetool@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} reporter: github-pr-review @@ -89,14 +89,14 @@ jobs: name: runner / textlint runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: oven-sh/setup-bun@635640504f6d7197d3bb29876a652f671028dc97 # main + - uses: oven-sh/setup-bun@v2 with: bun-version: latest - name: Install textlint diff --git a/.github/workflows/reviewdog.yaml b/.github/workflows/reviewdog.yaml index 7306b3f809..858846c5fc 100644 --- a/.github/workflows/reviewdog.yaml +++ b/.github/workflows/reviewdog.yaml @@ -25,7 +25,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -48,7 +48,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -76,7 +76,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/semver-major-minor.yaml b/.github/workflows/semver-major-minor.yaml index c61bbaaac4..db432a318b 100644 --- a/.github/workflows/semver-major-minor.yaml +++ b/.github/workflows/semver-major-minor.yaml @@ -27,7 +27,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -42,7 +42,7 @@ jobs: RELEASE_TAG: ${{ steps.upgrade_semver.outputs.RELEASE_TAG }} RELEASE: ${{ steps.setup_for_release.outputs.RELEASE }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/semver-patch.yaml b/.github/workflows/semver-patch.yaml index d1dbe83605..9902126ebe 100644 --- a/.github/workflows/semver-patch.yaml +++ b/.github/workflows/semver-patch.yaml @@ -26,7 +26,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -40,7 +40,7 @@ jobs: RELEASE_TAG: ${{ steps.upgrade_semver.outputs.RELEASE_TAG }} RELEASE: ${{ steps.upgrade_semver.outputs.RELEASE }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/test-hack.yaml b/.github/workflows/test-hack.yaml index d08168f4a8..62ac33148c 100644 --- a/.github/workflows/test-hack.yaml +++ b/.github/workflows/test-hack.yaml @@ -48,7 +48,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -72,7 +72,7 @@ jobs: run: working-directory: ${{ env.GOPATH }}/${{ env.PROJECT_ROOT_DIR }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false path: ${{ env.PROJECT_ROOT_DIR }} diff --git a/.github/workflows/unit-test-rust.yaml b/.github/workflows/unit-test-rust.yaml index 5757a1e9ce..d0093b6896 100644 --- a/.github/workflows/unit-test-rust.yaml +++ b/.github/workflows/unit-test-rust.yaml @@ -34,7 +34,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -55,7 +55,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 2f860202be..a9cf11b8fc 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -44,7 +44,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -65,7 +65,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config @@ -90,7 +90,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config @@ -115,7 +115,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/update-deps.yaml b/.github/workflows/update-deps.yaml index 59bea649c1..d451f6e6f0 100644 --- a/.github/workflows/update-deps.yaml +++ b/.github/workflows/update-deps.yaml @@ -25,7 +25,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -45,14 +45,14 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false token: ${{ secrets.DISPATCH_TOKEN }} - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true @@ -89,7 +89,7 @@ jobs: fi - name: Create PR if: ${{ steps.check_diff.outputs.HAS_GIT_DIFF == 'true' }} - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 + uses: peter-evans/create-pull-request@v8 with: author: "${{ secrets.DISPATCH_USER }} " token: ${{ secrets.DISPATCH_TOKEN }} diff --git a/.github/workflows/update-protobuf.yaml b/.github/workflows/update-protobuf.yaml index 92555c9a03..5aed383c4d 100644 --- a/.github/workflows/update-protobuf.yaml +++ b/.github/workflows/update-protobuf.yaml @@ -29,7 +29,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context diff --git a/.github/workflows/update-pull-request-and-issue-template.yaml b/.github/workflows/update-pull-request-and-issue-template.yaml index a36632d2c8..30f60e26d1 100644 --- a/.github/workflows/update-pull-request-and-issue-template.yaml +++ b/.github/workflows/update-pull-request-and-issue-template.yaml @@ -30,7 +30,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -41,14 +41,14 @@ jobs: name: Update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 - name: Set Git config run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - - uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0 + - uses: crazy-max/ghaction-import-gpg@v7 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} git_user_signingkey: true diff --git a/.github/workflows/vald-operator-test-e2e.yaml b/.github/workflows/vald-operator-test-e2e.yaml index 77ebef8e2c..a8a052a62e 100644 --- a/.github/workflows/vald-operator-test-e2e.yaml +++ b/.github/workflows/vald-operator-test-e2e.yaml @@ -34,7 +34,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -56,7 +56,7 @@ jobs: password: ${{ secrets.PACKAGE_TOKEN }} options: "--add-host host.docker.internal:host-gateway" steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/.github/workflows/vald-operator-test.yaml b/.github/workflows/vald-operator-test.yaml index 04bca044a5..d23def78f8 100644 --- a/.github/workflows/vald-operator-test.yaml +++ b/.github/workflows/vald-operator-test.yaml @@ -31,7 +31,7 @@ jobs: contents: read runs-on: ubuntu-slim steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - uses: ./.github/actions/dump-context @@ -52,7 +52,7 @@ jobs: username: ${{ secrets.PACKAGE_USER }} password: ${{ secrets.PACKAGE_TOKEN }} steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/checkout@v7 with: persist-credentials: false - name: Set Git config diff --git a/example/client/go.mod b/example/client/go.mod index 74ea60d426..5c11cad91e 100644 --- a/example/client/go.mod +++ b/example/client/go.mod @@ -11,11 +11,11 @@ replace ( ) require ( - github.com/kpango/fuid v0.0.0-00010101000000-000000000000 - github.com/kpango/glg v1.6.14 + github.com/kpango/fuid v0.0.0-20221203053508-503b5ad89aa1 + github.com/kpango/glg v1.6.15 github.com/vdaas/vald-client-go v1.7.17 - gonum.org/v1/hdf5 v0.0.0-00010101000000-000000000000 - google.golang.org/grpc v1.79.3 + gonum.org/v1/hdf5 v0.0.0-20210714002203-8c5d23bc6946 + google.golang.org/grpc v1.83.0 ) require ( @@ -26,7 +26,7 @@ require ( golang.org/x/net v0.58.0 // indirect golang.org/x/sys v0.47.0 // indirect golang.org/x/text v0.41.0 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f // indirect google.golang.org/protobuf v1.36.12 // indirect ) diff --git a/example/client/go.sum b/example/client/go.sum index ae56c92765..63428f6ca5 100644 --- a/example/client/go.sum +++ b/example/client/go.sum @@ -68,12 +68,12 @@ gonum.org/v1/hdf5 v0.0.0-20210714002203-8c5d23bc6946 h1:vJpL69PeUullhJyKtTjHjENE gonum.org/v1/hdf5 v0.0.0-20210714002203-8c5d23bc6946/go.mod h1:BQUWDHIAygjdt1HnUPQ0eWqLN2n5FwJycrpYUVUOx2I= google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa h1:Kjn0N0tCrDgiAFW+lGO4JZ3ck44CehvJQMAwj9QF0G8= google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa/go.mod h1:q4lMZS6kskjT5HvCPrnnypcDPVJqT/f4nfxmkE7gryY= -google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754 h1:dWeMvEJ3JhYgqSCAHUZZJgMUyfniiiCvDc72x5EqJP0= -google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754/go.mod h1:q/3oV3jAi5vwelxsVAprMBC8BcM2zmNe+IjRGd+9/ks= +google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f h1:zRL8hmUGXSGBJ2D+r85c0S3xhrg6BtfQ3V6KKbR/I9M= +google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f/go.mod h1:q/3oV3jAi5vwelxsVAprMBC8BcM2zmNe+IjRGd+9/ks= google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa h1:mZHHdPZl0dbGHCflZgAq/Q468DWVFcU2whhB2KAo8fk= google.golang.org/genproto/googleapis/rpc v0.0.0-20260526163538-3dc84a4a5aaa/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= -google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754 h1:k5CJw9e5ONCcA/u0webKt092npXuY+KeGh3Q8NAVf0g= -google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f h1:kMQMi+2r0XRQ/Ad2/tgd+5S7JYSBGYO4pwkLTE8F2y0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= google.golang.org/grpc v1.83.0 h1:JeNZEKJFbQxArAMl+hiytHauacDNqJUllNfmIMmpqnQ= google.golang.org/grpc v1.83.0/go.mod h1:kDyl6SKsiHKt0uylY5gtn5cEjkrIOhQOGDgIc4JGwzQ= google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE= diff --git a/go.mod b/go.mod index 7d66ca1b08..b2b629cec3 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.26.6 replace ( buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go => buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.12-20260709200747-435963d16310.1 cloud.google.com/go/storage => cloud.google.com/go/storage v1.64.0 - code.cloudfoundry.org/bytefmt => code.cloudfoundry.org/bytefmt v0.85.0 + code.cloudfoundry.org/bytefmt => code.cloudfoundry.org/bytefmt v0.86.0 github.com/akrylysov/pogreb => github.com/akrylysov/pogreb v0.10.2 github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.55.8 github.com/felixge/fgprof => github.com/felixge/fgprof v0.9.5 @@ -35,7 +35,7 @@ replace ( github.com/quasilyte/go-ruleguard/dsl => github.com/quasilyte/go-ruleguard/dsl v0.3.23 github.com/quic-go/quic-go => github.com/quic-go/quic-go v0.61.0 github.com/scylladb/gocqlx => github.com/scylladb/gocqlx v1.5.0 - github.com/stretchr/testify => github.com/stretchr/testify v1.11.1 + github.com/stretchr/testify => github.com/stretchr/testify v1.12.0 github.com/zeebo/xxh3 => github.com/zeebo/xxh3 v1.1.0 go.etcd.io/bbolt => go.etcd.io/bbolt v1.5.0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.70.0 @@ -61,8 +61,8 @@ replace ( golang.org/x/tools => golang.org/x/tools v0.49.0 gonum.org/v1/hdf5 => gonum.org/v1/hdf5 v0.0.0-20210714002203-8c5d23bc6946 gonum.org/v1/plot => gonum.org/v1/plot v0.17.0 - google.golang.org/genproto/googleapis/api => google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754 - google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754 + google.golang.org/genproto/googleapis/api => google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f + google.golang.org/genproto/googleapis/rpc => google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f google.golang.org/grpc => google.golang.org/grpc v1.83.0 google.golang.org/protobuf => google.golang.org/protobuf v1.36.12 gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.4.0 @@ -76,64 +76,64 @@ replace ( ) require ( - buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v0.0.0-00010101000000-000000000000 - cloud.google.com/go/storage v1.62.0 - code.cloudfoundry.org/bytefmt v0.0.0-20190710193110-1eb035ffe2b6 - github.com/akrylysov/pogreb v0.0.0-00010101000000-000000000000 + buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.12-20260709200747-435963d16310.1 + cloud.google.com/go/storage v1.64.0 + code.cloudfoundry.org/bytefmt v0.86.0 + github.com/akrylysov/pogreb v0.10.2 github.com/aws/aws-sdk-go v1.55.8 - github.com/felixge/fgprof v0.0.0-00010101000000-000000000000 - github.com/fsnotify/fsnotify v1.9.0 + github.com/felixge/fgprof v0.9.5 + github.com/fsnotify/fsnotify v1.10.1 github.com/go-logr/logr v1.4.4 - github.com/go-redis/redis/v8 v8.0.0-00010101000000-000000000000 - github.com/go-sql-driver/mysql v1.9.3 + github.com/go-redis/redis/v8 v8.11.5 + github.com/go-sql-driver/mysql v1.10.0 github.com/goccy/go-json v0.10.6 - github.com/gocql/gocql v0.0.0-20200131111108-92af2e088537 - github.com/gocraft/dbr/v2 v2.0.0-00010101000000-000000000000 + github.com/gocql/gocql v1.7.0 + github.com/gocraft/dbr/v2 v2.7.7 github.com/google/go-cmp v0.7.0 github.com/google/uuid v1.6.0 - github.com/gorilla/mux v1.7.3 - github.com/grafana/grafana-foundation-sdk/go v0.0.0-00010101000000-000000000000 - github.com/grafana/promql-builder/go v0.0.0-00010101000000-000000000000 - github.com/grafana/pyroscope-go/godeltaprof v0.0.0-00010101000000-000000000000 - github.com/hashicorp/go-version v1.2.0 - github.com/klauspost/compress v1.19.1 + github.com/gorilla/mux v1.8.1 + github.com/grafana/grafana-foundation-sdk/go v0.0.18 + github.com/grafana/promql-builder/go v0.0.6 + github.com/grafana/pyroscope-go/godeltaprof v0.1.12 + github.com/hashicorp/go-version v1.9.0 + github.com/klauspost/compress v1.19.2 github.com/kpango/fastime v1.1.10 - github.com/kpango/gache/v2 v2.0.0-00010101000000-000000000000 + github.com/kpango/gache/v2 v2.1.10 github.com/kpango/glg v1.6.15 - github.com/kubernetes-csi/external-snapshotter/client/v6 v6.0.0-00010101000000-000000000000 + github.com/kubernetes-csi/external-snapshotter/client/v6 v6.3.0 github.com/leanovate/gopter v0.0.0-00010101000000-000000000000 - github.com/pierrec/lz4/v3 v3.0.0-00010101000000-000000000000 + github.com/pierrec/lz4/v3 v3.3.5 github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 github.com/quasilyte/go-ruleguard v0.0.0-00010101000000-000000000000 - github.com/quasilyte/go-ruleguard/dsl v0.3.22 - github.com/quic-go/quic-go v0.0.0-00010101000000-000000000000 - github.com/scylladb/gocqlx v0.0.0-00010101000000-000000000000 - github.com/stretchr/testify v1.11.1 + github.com/quasilyte/go-ruleguard/dsl v0.3.23 + github.com/quic-go/quic-go v0.61.0 + github.com/scylladb/gocqlx v1.5.0 + github.com/stretchr/testify v1.12.0 github.com/zeebo/xxh3 v1.1.0 - go.etcd.io/bbolt v1.4.3 + go.etcd.io/bbolt v1.5.0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.70.0 go.opentelemetry.io/otel v1.45.0 - go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.42.0 + go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.45.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.45.0 - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.42.0 + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.45.0 go.opentelemetry.io/otel/metric v1.45.0 go.opentelemetry.io/otel/sdk v1.45.0 go.opentelemetry.io/otel/sdk/metric v1.45.0 go.opentelemetry.io/otel/trace v1.45.0 - go.uber.org/automaxprocs v0.0.0-00010101000000-000000000000 + go.uber.org/automaxprocs v1.6.0 go.uber.org/goleak v1.3.0 - go.uber.org/ratelimit v0.0.0-00010101000000-000000000000 - go.uber.org/zap v1.27.1 - gocloud.dev v0.0.0-00010101000000-000000000000 + go.uber.org/ratelimit v0.3.1 + go.uber.org/zap v1.28.0 + gocloud.dev v0.46.0 golang.org/x/net v0.58.0 golang.org/x/oauth2 v0.36.0 golang.org/x/sys v0.47.0 golang.org/x/text v0.41.0 golang.org/x/time v0.15.0 golang.org/x/tools v0.49.0 - gonum.org/v1/hdf5 v0.0.0-00010101000000-000000000000 - google.golang.org/genproto/googleapis/api v0.0.0-20260807164820-c8921c73eeea - google.golang.org/genproto/googleapis/rpc v0.0.0-20260807164820-c8921c73eeea + gonum.org/v1/hdf5 v0.0.0-20210714002203-8c5d23bc6946 + google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f + google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f google.golang.org/grpc v1.83.0 google.golang.org/protobuf v1.36.12 gopkg.in/yaml.v2 v2.4.0 @@ -142,8 +142,8 @@ require ( k8s.io/apiextensions-apiserver v0.36.3 k8s.io/apimachinery v0.36.3 k8s.io/client-go v0.36.3 - k8s.io/metrics v0.0.0-00010101000000-000000000000 - sigs.k8s.io/controller-runtime v0.0.0-00010101000000-000000000000 + k8s.io/metrics v0.36.3 + sigs.k8s.io/controller-runtime v0.24.1 sigs.k8s.io/yaml v1.6.0 ) @@ -167,11 +167,11 @@ require ( github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/emicklei/go-restful/v3 v3.13.0 // indirect - github.com/envoyproxy/go-control-plane/envoy v1.37.0 // indirect + github.com/envoyproxy/go-control-plane/envoy v1.39.0 // indirect github.com/envoyproxy/protoc-gen-validate v1.3.3 // indirect github.com/evanphx/json-patch/v5 v5.9.11 // indirect github.com/felixge/httpsnoop v1.1.0 // indirect - github.com/fxamacker/cbor/v2 v2.9.2 // indirect + github.com/fxamacker/cbor/v2 v2.9.3 // indirect github.com/go-jose/go-jose/v4 v4.1.4 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-openapi/jsonpointer v1.0.0 // indirect @@ -236,7 +236,7 @@ require ( golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect google.golang.org/api v0.293.0 // indirect - google.golang.org/genproto v0.0.0-20260810153831-ec0a7760b754 // indirect + google.golang.org/genproto v0.0.0-20260818201246-1b0934165a6f // indirect gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect k8s.io/klog/v2 v2.140.0 // indirect diff --git a/go.sum b/go.sum index 451d2a4082..1fc8ac28e7 100644 --- a/go.sum +++ b/go.sum @@ -2920,8 +2920,8 @@ cloud.google.com/go/workflows v1.13.3/go.mod h1:Xi7wggEt/ljoEcyk+CB/Oa1AHBCk0T1f cloud.google.com/go/workflows v1.14.2/go.mod h1:5nqKjMD+MsJs41sJhdVrETgvD5cOK3hUcAs8ygqYvXQ= cloud.google.com/go/workflows v1.14.3/go.mod h1:CC9+YdVI2Kvp0L58WajHpEfKJxhrtRh3uQ0SYWcmAk4= cloud.google.com/go/workflows v1.19.0/go.mod h1:TWsrDGgsJy7xAJ07byzHhKKehEWItJG3BivEHVhGH5g= -code.cloudfoundry.org/bytefmt v0.85.0 h1:cVV4CJTgEmd31Tjx4vYE8ALhL0kWXFtMjR6CbKEI+Sk= -code.cloudfoundry.org/bytefmt v0.85.0/go.mod h1:3bhW+j42zXxcG8B8Uoxam+IW/+HveTf1L7w0FZioE4s= +code.cloudfoundry.org/bytefmt v0.86.0 h1:nT+g6H9uMZKuDFw2Q2k5YUtN/36y3BJ7/WgWGlAzICw= +code.cloudfoundry.org/bytefmt v0.86.0/go.mod h1:nXPkX12GcU2FREdotT/niWqAoqj6f3S0VIK+O6x1kUM= codeberg.org/go-fonts/dejavu v0.4.0/go.mod h1:abni088lmhQJvso2Lsb7azCKzwkfcnttl6tL1UTWKzg= codeberg.org/go-fonts/latin-modern v0.4.0/go.mod h1:BF68mZznJ9QHn+hic9ks2DaFl4sR5YhfM6xTYaP9vNw= codeberg.org/go-fonts/liberation v0.5.0/go.mod h1:zS/2e1354/mJ4pGzIIaEtm/59VFCFnYC7YV6YdGl5GU= @@ -3259,6 +3259,8 @@ github.com/envoyproxy/go-control-plane/envoy v1.35.0/go.mod h1:09qwbGVuSWWAyN5t/ github.com/envoyproxy/go-control-plane/envoy v1.36.0/go.mod h1:ty89S1YCCVruQAm9OtKeEkQLTb+Lkz0k8v9W0Oxsv98= github.com/envoyproxy/go-control-plane/envoy v1.37.0 h1:u3riX6BoYRfF4Dr7dwSOroNfdSbEPe9Yyl09/B6wBrQ= github.com/envoyproxy/go-control-plane/envoy v1.37.0/go.mod h1:DReE9MMrmecPy+YvQOAOHNYMALuowAnbjjEMkkWOi6A= +github.com/envoyproxy/go-control-plane/envoy v1.39.0 h1:1uwRDYPYG8BIBU9Mj1sUAebNmlM6beu/ZKKweSLDxk8= +github.com/envoyproxy/go-control-plane/envoy v1.39.0/go.mod h1:5e4ylfTZO723MEEFsCpSW4ZEBWR8mwkEyXfwJBTCZ9c= github.com/envoyproxy/go-control-plane/ratelimit v0.1.0 h1:/G9QYbddjL25KvtKTv3an9lx6VBE2cnb8wp1vEGNYGI= github.com/envoyproxy/go-control-plane/ratelimit v0.1.0/go.mod h1:Wk+tMFAFbCXaJPzVVHnPgRKdUdwW/KdbRt94AzgRee4= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= @@ -3298,8 +3300,8 @@ github.com/fsnotify/fsnotify v1.10.1 h1:b0/UzAf9yR5rhf3RPm9gf3ehBPpf0oZKIjtpKrx5 github.com/fsnotify/fsnotify v1.10.1/go.mod h1:TLheqan6HD6GBK6PrDWyDPBaEV8LspOxvPSjC+bVfgo= github.com/fxamacker/cbor/v2 v2.9.0 h1:NpKPmjDBgUfBms6tr6JZkTHtfFGcMKsw3eGcmD/sapM= github.com/fxamacker/cbor/v2 v2.9.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= -github.com/fxamacker/cbor/v2 v2.9.2 h1:X4Ksno9+x3cz0TZv69ec1hxP/+tymuR8PXQJyDwfh78= -github.com/fxamacker/cbor/v2 v2.9.2/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= +github.com/fxamacker/cbor/v2 v2.9.3 h1:oQBnFATpNdY8gJHTndDDv5Xl4QqNaz51G5LLEPhng3Q= +github.com/fxamacker/cbor/v2 v2.9.3/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gkampitakis/ciinfo v0.3.2/go.mod h1:1NIwaOcFChN4fa/B0hEBdAb6npDlFL8Bwx4dfRLRqAo= github.com/gkampitakis/go-diff v1.3.2/go.mod h1:LLgOrpqleQe26cte8s36HTWcTmMEur6OPYerdAAS9tk= @@ -4015,12 +4017,11 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/objx v0.5.3 h1:jmXUvGomnU1o3W/V5h2VEradbpJDwGrzugQQvL0POH4= github.com/stretchr/objx v0.5.3/go.mod h1:rDQraq+vQZU7Fde9LOZLr8Tax6zZvy4kuNKF+QYS+U0= -github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= -github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +github.com/stretchr/testify v1.12.0 h1:K6Mr6jO9JICuend/5xzTM03ydSV3vdNRYAdPSukj8uI= +github.com/stretchr/testify v1.12.0/go.mod h1:bOYBZb5qJ00vPzWfIqBUZPaxK8jWiXc6d3ErP4Ca9Gw= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= github.com/substrait-io/substrait-go v0.4.2/go.mod h1:qhpnLmrcvAnlZsUyPXZRqldiHapPTXC3t7xFgDi3aQg= github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= @@ -4309,7 +4310,6 @@ golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU= golang.org/x/mod v0.33.0/go.mod h1:swjeQEj+6r7fODbD2cqrnje9PnziFuw4bmLbBZFrQ5w= golang.org/x/mod v0.35.0/go.mod h1:+GwiRhIInF8wPm+4AoT6L0FA1QWAad3OMdTRx4tFYlU= golang.org/x/mod v0.38.0/go.mod h1:V6Xz0pq8TQ3dGqVQ1FVHuelZpAL0uNhSkk9ogYP3c40= -golang.org/x/mod v0.39.0 h1:UF5zwQdCRRUpHfyPwr7d4UrGiVeldIsogtzWVnczL74= golang.org/x/mod v0.39.0/go.mod h1:bvIbwjQ0HUFFf5AKukeeYQG4ZBUG9yxQbR9aEweIwYY= golang.org/x/mod v0.40.0 h1:hUv+3cXcdRHz08UmSiOob7sadHig73uo5bkXxQ/tvUs= golang.org/x/mod v0.40.0/go.mod h1:0/weTWkPWGBikyTWAX3dkjVztMmBA5hM0DH6BElSupE= @@ -4710,10 +4710,10 @@ google.golang.org/genproto v0.0.0-20260316180232-0b37fe3546d5/go.mod h1:x5julN69 google.golang.org/genproto v0.0.0-20260319201613-d00831a3d3e7/go.mod h1:L43LFes82YgSonw6iTXTxXUX1OlULt4AQtkik4ULL/I= google.golang.org/genproto v0.0.0-20260519071638-aa98bba5eb94 h1:YJjbgu+dkp5kUJLfpMyCLfBIWZb/FcJyuLeo1gVBOuo= google.golang.org/genproto v0.0.0-20260519071638-aa98bba5eb94/go.mod h1:RRHjglSYABVCWpQ7USCpdfhcd9t4PkajvVwyynZizTc= -google.golang.org/genproto v0.0.0-20260810153831-ec0a7760b754 h1:Kj7g/XOpdB2mzcVV92AFeNKvYR5WRNpxfX5Mj3wQ2SM= -google.golang.org/genproto v0.0.0-20260810153831-ec0a7760b754/go.mod h1:UpDDw2l68z31m5UZN/Qi0Kow16ohhlJVlmqC3qRM5Q8= -google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754 h1:dWeMvEJ3JhYgqSCAHUZZJgMUyfniiiCvDc72x5EqJP0= -google.golang.org/genproto/googleapis/api v0.0.0-20260810153831-ec0a7760b754/go.mod h1:q/3oV3jAi5vwelxsVAprMBC8BcM2zmNe+IjRGd+9/ks= +google.golang.org/genproto v0.0.0-20260818201246-1b0934165a6f h1:mIpuZeRssq9TYLzKcruaLOCbOgJt8WDF1FSyEPZBw24= +google.golang.org/genproto v0.0.0-20260818201246-1b0934165a6f/go.mod h1:UpDDw2l68z31m5UZN/Qi0Kow16ohhlJVlmqC3qRM5Q8= +google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f h1:zRL8hmUGXSGBJ2D+r85c0S3xhrg6BtfQ3V6KKbR/I9M= +google.golang.org/genproto/googleapis/api v0.0.0-20260818201246-1b0934165a6f/go.mod h1:q/3oV3jAi5vwelxsVAprMBC8BcM2zmNe+IjRGd+9/ks= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= google.golang.org/genproto/googleapis/bytestream v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:+34luvCflYKiKylNwGJfn9cFBbcL/WrkciMmDmsTQ/A= @@ -4771,8 +4771,8 @@ google.golang.org/genproto/googleapis/bytestream v0.0.0-20260311181403-84a4fc486 google.golang.org/genproto/googleapis/bytestream v0.0.0-20260319201613-d00831a3d3e7/go.mod h1:6TABGosqSqU2l1+fJ3jdvOYPPVryeKybxYF0cCZkTBE= google.golang.org/genproto/googleapis/bytestream v0.0.0-20260511170946-3700d4141b60/go.mod h1:6TABGosqSqU2l1+fJ3jdvOYPPVryeKybxYF0cCZkTBE= google.golang.org/genproto/googleapis/bytestream v0.0.0-20260630182238-925bb5da69e7/go.mod h1:6TABGosqSqU2l1+fJ3jdvOYPPVryeKybxYF0cCZkTBE= -google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754 h1:k5CJw9e5ONCcA/u0webKt092npXuY+KeGh3Q8NAVf0g= -google.golang.org/genproto/googleapis/rpc v0.0.0-20260810153831-ec0a7760b754/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f h1:kMQMi+2r0XRQ/Ad2/tgd+5S7JYSBGYO4pwkLTE8F2y0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20260818201246-1b0934165a6f/go.mod h1:4Hqkh8ycfw05ld/3BWL7rJOSfebL2Q+DVDeRgYgxUU8= google.golang.org/grpc v1.83.0 h1:JeNZEKJFbQxArAMl+hiytHauacDNqJUllNfmIMmpqnQ= google.golang.org/grpc v1.83.0/go.mod h1:kDyl6SKsiHKt0uylY5gtn5cEjkrIOhQOGDgIc4JGwzQ= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= diff --git a/k8s/readreplica/configmap.yaml b/k8s/readreplica/configmap.yaml index 2425b79c71..bac0dc94eb 100644 --- a/k8s/readreplica/configmap.yaml +++ b/k8s/readreplica/configmap.yaml @@ -54,7 +54,7 @@ data: max_conn_age_grace: "" max_conn_idle: "" min_time: 10m - permit_without_stream: false + permit_without_stream: true time: 3h timeout: 60s max_concurrent_streams: 0 diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 1123032d67..e8ca82bb65 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -278,9 +278,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" [[package]] name = "cc" -version = "1.4.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d262e149917187838d5b42777c8253bcb64500067342904e7d429499a6f277e" +checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d" dependencies = [ "find-msvc-tools", "shlex", @@ -672,9 +672,9 @@ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" [[package]] name = "find-msvc-tools" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b73573e6edcd2af0cdf47bd6cb58f0b3839491263c314eaad1ccf24430e1de" +checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890" [[package]] name = "fixedbitset" @@ -872,9 +872,9 @@ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" [[package]] name = "h2" -version = "0.4.15" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" +checksum = "a9f37a958b41b3b19ee2707c06439c0e9e547e847223eb791ecb0cb821c65e27" dependencies = [ "atomic-waker", "bytes", @@ -1063,9 +1063,9 @@ dependencies = [ [[package]] name = "icu_collections" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513" dependencies = [ "displaydoc", "potential_utf", @@ -1077,9 +1077,9 @@ dependencies = [ [[package]] name = "icu_locale_core" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb" dependencies = [ "displaydoc", "litemap", @@ -1090,9 +1090,9 @@ dependencies = [ [[package]] name = "icu_normalizer" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f" dependencies = [ "icu_collections", "icu_normalizer_data", @@ -1104,16 +1104,17 @@ dependencies = [ [[package]] name = "icu_normalizer_data" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" +checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0" [[package]] name = "icu_properties" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148" dependencies = [ + "displaydoc", "icu_collections", "icu_locale_core", "icu_properties_data", @@ -1124,15 +1125,15 @@ dependencies = [ [[package]] name = "icu_properties_data" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" +checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa" [[package]] name = "icu_provider" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +checksum = "92a7ed671a6aad807a8651a2e1782a6598fda9ce5185dd8158549e95a91c6428" dependencies = [ "displaydoc", "icu_locale_core", @@ -1295,9 +1296,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "litemap" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" +checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae" [[package]] name = "lock_api" @@ -1796,9 +1797,9 @@ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85" [[package]] name = "potential_utf" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661" dependencies = [ "zerovec", ] @@ -2425,9 +2426,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643" dependencies = [ "displaydoc", "zerovec", @@ -2738,9 +2739,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.24.0" +version = "1.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" +checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9" dependencies = [ "getrandom 0.4.3", "js-sys", @@ -2996,15 +2997,15 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" [[package]] name = "writeable" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" +checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc" [[package]] name = "yaml-rust2" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e" +checksum = "b36710ce3a279cfce8465dbab826f161675a262950b922cb2c3663852dfe9eb0" dependencies = [ "arraydeque", "encoding_rs", @@ -3077,9 +3078,9 @@ dependencies = [ [[package]] name = "zerotrie" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f" dependencies = [ "displaydoc", "yoke", @@ -3088,9 +3089,9 @@ dependencies = [ [[package]] name = "zerovec" -version = "0.11.6" +version = "0.11.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +checksum = "94b5c6b5976d66c1d703c4fd17d3f5e43c8cedaacf604961b171adc7130896d8" dependencies = [ "yoke", "zerofrom", @@ -3099,13 +3100,13 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.11.3" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +checksum = "9f212a141d820099d57ffafb9569be9617a6f27d3dc881fbee8fb56642f917a9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.119", + "syn 3.0.3", ] [[package]] diff --git a/versions/CHAOS_MESH_VERSION b/versions/CHAOS_MESH_VERSION index 9f8d8a9164..2701a226a2 100644 --- a/versions/CHAOS_MESH_VERSION +++ b/versions/CHAOS_MESH_VERSION @@ -1 +1 @@ -2.8.3 +2.8.4 diff --git a/versions/actions/SHOGO82148_ACTIONS_UPLOAD_RELEASE_ASSET b/versions/actions/SHOGO82148_ACTIONS_UPLOAD_RELEASE_ASSET index 587c5f0c73..18b3114206 100644 --- a/versions/actions/SHOGO82148_ACTIONS_UPLOAD_RELEASE_ASSET +++ b/versions/actions/SHOGO82148_ACTIONS_UPLOAD_RELEASE_ASSET @@ -1 +1 @@ -1.10.3 +1.10.4