chore(deps): Bump go.opentelemetry.io/otel/sdk from 1.32.0 to 1.33.0 in /examples/component/wasitel-http #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot go mod tidy | |
on: | |
pull_request: | |
paths: | |
- '**/go.mod' | |
permissions: | |
contents: read | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'wasmCloud/go' }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: 'stable' | |
- name: List changed go.mod files | |
uses: tj-actions/changed-files@bab30c2299617f6615ec02a68b9a40d10bd21366 # v45.0.5 | |
id: changed_go_mod | |
with: | |
files: | | |
**/go.mod | |
files_ignore: | | |
templates/**/go.mod | |
- name: Go mod tidy changed modules | |
if: ${{ steps.changed_go_mod.outputs.any_changed == 'true' }} | |
shell: bash | |
run: | | |
./.github/go-mod-tidy-changed.sh ${{ steps.changed_go_mod.outputs.all_changed_files }} | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v20 | |
id: verify_changed_files | |
with: | |
files: | | |
**/go.mod | |
**/go.sum | |
- name: Push changes | |
if: ${{ steps.verify_changed_files.outputs.files_changed == 'true' }} | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add $(git ls-files -m) | |
git commit -m "chore: go mod tidy" --signoff | |
git push |