Skip to content

Commit 3bb392c

Browse files
authored
Merge pull request #61 from jkawamoto/bump
Update dependencies
2 parents 0003de8 + ee56ae3 commit 3bb392c

33 files changed

+136
-177
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717
- name: Run pre-commit hook
1818
uses: pre-commit/[email protected]
1919
- name: Run tests
20-
run: go test -race -coverprofile=coverage.out -covermode=atomic -v ./...
21-
- name: Upload coverage to Codecov
22-
uses: codecov/codecov-action@v5
20+
run: go test -race -v ./...
2321
test-windows:
2422
runs-on: windows-latest
2523
steps:

.github/workflows/release.yaml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,3 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
28-
29-
merge:
30-
runs-on: ubuntu-latest
31-
steps:
32-
- uses: actions/checkout@v4
33-
with:
34-
ref: develop
35-
- name: Merge the new version into develop
36-
run: |
37-
git config user.name github-actions
38-
git config user.email [email protected]
39-
git fetch --tags origin
40-
git merge ${REF##*/}
41-
git push
42-
env:
43-
REF: ${{ github.event.push.ref }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ repos:
1616
hooks:
1717
- id: swagger-validation
1818
- repo: https://github.com/golangci/golangci-lint
19-
rev: v2.5.0
19+
rev: v2.7.1
2020
hooks:
2121
- id: golangci-lint

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018-2021 Junpei Kawamoto
3+
Copyright (c) 2018-2025 Junpei Kawamoto
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# A Pixeldrain client
2-
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
32
[![Go application](https://github.com/jkawamoto/go-pixeldrain/actions/workflows/ci.yaml/badge.svg)](https://github.com/jkawamoto/go-pixeldrain/actions/workflows/ci.yaml)
43
[![Go Reference](https://pkg.go.dev/badge/github.com/jkawamoto/go-pixeldrain.svg)](https://pkg.go.dev/github.com/jkawamoto/go-pixeldrain)
5-
[![codecov](https://codecov.io/gh/jkawamoto/go-pixeldrain/branch/master/graph/badge.svg?token=ppX3MVIqWA)](https://codecov.io/gh/jkawamoto/go-pixeldrain)
4+
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
65

76

87
## Usage

cmd/pd/auth/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// context.go
22
//
3-
// Copyright (c) 2018-2023 Junpei Kawamoto
3+
// Copyright (c) 2018-2025 Junpei Kawamoto
44
//
55
// This software is released under the MIT License.
66
//

cmd/pd/auth/context_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// context_test.go
22
//
3-
// Copyright (c) 2018-2023 Junpei Kawamoto
3+
// Copyright (c) 2018-2025 Junpei Kawamoto
44
//
55
// This software is released under the MIT License.
66
//

cmd/pd/auth/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// doc.go
22
//
3-
// Copyright (c) 2018-2023 Junpei Kawamoto
3+
// Copyright (c) 2018-2025 Junpei Kawamoto
44
//
55
// This software is released under the MIT License.
66
//

cmd/pd/command/age.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// age.go
22
//
3-
// Copyright (c) 2018-2023 Junpei Kawamoto
3+
// Copyright (c) 2018-2025 Junpei Kawamoto
44
//
55
// This software is released under the MIT License.
66
//

cmd/pd/command/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// commands.go
22
//
3-
// Copyright (c) 2018-2023 Junpei Kawamoto
3+
// Copyright (c) 2018-2025 Junpei Kawamoto
44
//
55
// This software is released under the MIT License.
66
//

0 commit comments

Comments
 (0)