Skip to content

Commit dbd6f61

Browse files
Merge pull request #477 from spf13/update-dependencies
Update dependencies
2 parents 464bc98 + 83b8a55 commit dbd6f61

File tree

4 files changed

+136
-206
lines changed

4 files changed

+136
-206
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
go: ["1.21", "1.22", "1.23", "1.24"]
17+
go: ["1.23", "1.24"]
1818

1919
steps:
2020
- name: Checkout repository
@@ -44,4 +44,4 @@ jobs:
4444
- name: Lint
4545
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6.5.1
4646
with:
47-
version: v1.64.5
47+
version: v1.64.7

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
A FileSystem Abstraction System for Go
44

5-
[![Test](https://github.com/spf13/afero/actions/workflows/test.yml/badge.svg)](https://github.com/spf13/afero/actions/workflows/test.yml) [![GoDoc](https://godoc.org/github.com/spf13/afero?status.svg)](https://godoc.org/github.com/spf13/afero) [![Join the chat at https://gitter.im/spf13/afero](https://badges.gitter.im/Dev%20Chat.svg)](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/spf13/afero/ci.yaml?branch=master&style=flat-square)](https://github.com/spf13/afero/actions?query=workflow%3ACI)
6+
[![Join the chat at https://gitter.im/spf13/afero](https://badges.gitter.im/Dev%20Chat.svg)](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7+
[![Go Report Card](https://goreportcard.com/badge/github.com/spf13/afero?style=flat-square)](https://goreportcard.com/report/github.com/spf13/afero)
8+
![Go Version](https://img.shields.io/badge/go%20version-%3E=1.23-61CFDD.svg?style=flat-square)
9+
[![PkgGoDev](https://pkg.go.dev/badge/mod/github.com/spf13/afero)](https://pkg.go.dev/mod/github.com/spf13/afero)
610

711
# Overview
812

go.mod

+37-39
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,56 @@
11
module github.com/spf13/afero
22

3-
go 1.21
3+
go 1.23.0
44

55
require (
6-
cloud.google.com/go/storage v1.49.0
6+
cloud.google.com/go/storage v1.51.0
77
github.com/pkg/sftp v1.13.7
8-
golang.org/x/crypto v0.33.0
9-
golang.org/x/oauth2 v0.26.0
10-
golang.org/x/text v0.22.0
11-
google.golang.org/api v0.215.0
8+
golang.org/x/crypto v0.36.0
9+
golang.org/x/oauth2 v0.28.0
10+
golang.org/x/text v0.23.0
11+
google.golang.org/api v0.226.0
1212
)
1313

1414
require (
15-
cel.dev/expr v0.16.1 // indirect
16-
cloud.google.com/go v0.116.0 // indirect
17-
cloud.google.com/go/auth v0.13.0 // indirect
18-
cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect
15+
cel.dev/expr v0.19.2 // indirect
16+
cloud.google.com/go v0.118.3 // indirect
17+
cloud.google.com/go/auth v0.15.0 // indirect
18+
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
1919
cloud.google.com/go/compute/metadata v0.6.0 // indirect
20-
cloud.google.com/go/iam v1.2.2 // indirect
21-
cloud.google.com/go/monitoring v1.21.2 // indirect
20+
cloud.google.com/go/iam v1.4.1 // indirect
21+
cloud.google.com/go/monitoring v1.24.0 // indirect
2222
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
23-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
24-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
25-
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
23+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
24+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
2625
github.com/cespare/xxhash/v2 v2.3.0 // indirect
27-
github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 // indirect
28-
github.com/envoyproxy/go-control-plane v0.13.1 // indirect
29-
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
26+
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
27+
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
28+
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
3029
github.com/felixge/httpsnoop v1.0.4 // indirect
3130
github.com/go-logr/logr v1.4.2 // indirect
3231
github.com/go-logr/stdr v1.2.2 // indirect
33-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
34-
github.com/google/s2a-go v0.1.8 // indirect
32+
github.com/google/s2a-go v0.1.9 // indirect
3533
github.com/google/uuid v1.6.0 // indirect
36-
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
34+
github.com/googleapis/enterprise-certificate-proxy v0.3.5 // indirect
3735
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
3836
github.com/kr/fs v0.1.0 // indirect
3937
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
40-
go.opencensus.io v0.24.0 // indirect
41-
go.opentelemetry.io/contrib/detectors/gcp v1.29.0 // indirect
42-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
43-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
44-
go.opentelemetry.io/otel v1.29.0 // indirect
45-
go.opentelemetry.io/otel/metric v1.29.0 // indirect
46-
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
47-
go.opentelemetry.io/otel/sdk/metric v1.29.0 // indirect
48-
go.opentelemetry.io/otel/trace v1.29.0 // indirect
49-
golang.org/x/net v0.33.0 // indirect
50-
golang.org/x/sync v0.11.0 // indirect
51-
golang.org/x/sys v0.30.0 // indirect
52-
golang.org/x/time v0.8.0 // indirect
53-
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
54-
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
55-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8 // indirect
56-
google.golang.org/grpc v1.67.3 // indirect
57-
google.golang.org/protobuf v1.36.1 // indirect
38+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
39+
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
40+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
41+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
42+
go.opentelemetry.io/otel v1.34.0 // indirect
43+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
44+
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
45+
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
46+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
47+
golang.org/x/net v0.37.0 // indirect
48+
golang.org/x/sync v0.12.0 // indirect
49+
golang.org/x/sys v0.31.0 // indirect
50+
golang.org/x/time v0.11.0 // indirect
51+
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
52+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
53+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
54+
google.golang.org/grpc v1.71.0 // indirect
55+
google.golang.org/protobuf v1.36.5 // indirect
5856
)

0 commit comments

Comments
 (0)