Skip to content

chore(deps): bump github.com/jacoelho/banking from 1.9.0 to 1.9.1 #548

chore(deps): bump github.com/jacoelho/banking from 1.9.0 to 1.9.1

chore(deps): bump github.com/jacoelho/banking from 1.9.0 to 1.9.1 #548

Workflow file for this run

name: build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- name: Build
run: go build -v ./...
- name: Go Vet
run: go vet ./...
- name: Test
run: |
go test -v -failfast -race ./...
dependabot:
needs: [build]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash --auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}