diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..0faf802 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,35 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + time: "09:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "chore(deps)" + groups: + minor-and-patch: + applies-to: version-updates + patterns: + - "*" + update-types: + - minor + - patch + open-pull-requests-limit: 10 + target-branch: "develop" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "09:00" + timezone: "Asia/Tokyo" + commit-message: + prefix: "ci" + groups: + github-actions: + applies-to: version-updates + patterns: + - "*" + open-pull-requests-limit: 10 + target-branch: "develop" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67ccde4..c011afc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,13 +8,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.19', '1.18'] + go: ['1.22', '1.23'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.ref }} - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Test