Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: zeroalphat <[email protected]>
  • Loading branch information
zeroalphat committed Nov 15, 2023
1 parent df03229 commit 5c7cac8
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 59 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: Small test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: v2/go.mod
- run: make setup
Expand All @@ -30,7 +30,7 @@ jobs:
name: End-to-end Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: auth
uses: google-github-actions/auth@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: v2/go.mod
- run: |
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,25 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.4.4] - 2023-11-15

### Changed

- Update dependencies in [#193](https://github.com/cybozu-go/placemat/pull/193)
- Upgrade direct dependencies in go.mod
- Update Golang used for testing from 1.20 to 1.21
- Update GitHub Actions

## [2.4.3] - 2023-07-28

### Changed

- Update dependencies in [#189](https://github.com/cybozu-go/placemat/pull/189)
- Upgrade direct dependencies in go.mod
- Update Golang used for testing from 1.19 to 1.20
- Update GitHub Actions

## [2.4.2] - 2023-03-27

### Removed
Expand Down
36 changes: 18 additions & 18 deletions v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module github.com/cybozu-go/placemat/v2

go 1.20
go 1.21

require (
github.com/containernetworking/plugins v1.3.0
github.com/coreos/go-iptables v0.6.0
github.com/coreos/go-iptables v0.7.0
github.com/cybozu-go/log v1.7.0
github.com/cybozu-go/netutil v1.4.5
github.com/cybozu-go/netutil v1.4.6
github.com/cybozu-go/well v1.11.2
github.com/fatih/color v1.15.0
github.com/fatih/color v1.16.0
github.com/gin-gonic/gin v1.9.1
github.com/onsi/ginkgo/v2 v2.11.0
github.com/onsi/gomega v1.27.10
github.com/spf13/cobra v1.7.0
github.com/stmcginnis/gofish v0.14.0
github.com/onsi/ginkgo/v2 v2.13.1
github.com/onsi/gomega v1.30.0
github.com/spf13/cobra v1.8.0
github.com/stmcginnis/gofish v0.15.0
github.com/vishvananda/netlink v1.2.1-beta.2
github.com/vishvananda/netns v0.0.4
golang.org/x/crypto v0.14.0
k8s.io/apimachinery v0.27.4
sigs.k8s.io/yaml v1.3.0
golang.org/x/crypto v0.15.0
k8s.io/apimachinery v0.27.7
sigs.k8s.io/yaml v1.4.0
)

require (
Expand All @@ -29,14 +29,14 @@ require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.14.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20230705174524-200ffdc848b8 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
Expand All @@ -45,7 +45,7 @@ require (
github.com/leodido/go-urn v1.2.4 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
Expand All @@ -60,10 +60,10 @@ require (
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
golang.org/x/arch v0.4.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.11.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.14.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down
Loading

0 comments on commit 5c7cac8

Please sign in to comment.