-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from itchyny/misc-update-20240423
Miscellaneous updates
- Loading branch information
Showing
14 changed files
with
109 additions
and
108 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Setup Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.x | ||
- name: Test | ||
run: make test | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.x | ||
- name: Test | ||
run: make test |
22 changes: 14 additions & 8 deletions
22
.github/workflows/release.yml → .github/workflows/release.yaml
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,30 @@ | ||
module github.com/hatena/u2s3 | ||
|
||
go 1.20 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.34.0 | ||
github.com/k0kubun/pp v2.3.0+incompatible | ||
github.com/klauspost/pgzip v1.0.1 | ||
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 | ||
github.com/urfave/cli v1.22.1 | ||
github.com/aws/aws-sdk-go v1.51.30 | ||
github.com/k0kubun/pp v2.4.0+incompatible | ||
github.com/klauspost/pgzip v1.2.6 | ||
github.com/opencontainers/runtime-spec v1.2.0 | ||
github.com/urfave/cli v1.22.14 | ||
) | ||
|
||
require ( | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/jmespath/go-jmespath v0.3.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/containerd/cgroups v1.1.0 | ||
github.com/godbus/dbus/v5 v5.0.6 // indirect | ||
github.com/godbus/dbus/v5 v5.1.0 // indirect | ||
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect | ||
github.com/klauspost/compress v1.2.2-0.20170218081604-14c9a76e3c95 // indirect | ||
github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc // indirect | ||
github.com/klauspost/crc32 v0.0.0-20170210140523-1bab8b35b6bb // indirect | ||
github.com/mattn/go-colorable v0.0.8-0.20170312235756-a392f450ea64 // indirect | ||
github.com/mattn/go-isatty v0.0.0-20161123143637-30a891c33c7c // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
github.com/klauspost/compress v1.17.8 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
) |
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
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
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
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
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
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
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
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
Oops, something went wrong.