Skip to content

Commit 4f72b8a

Browse files
committed
Upgrade to go-datastore@v0.5.1
1 parent 9d26987 commit 4f72b8a

File tree

6 files changed

+762
-216
lines changed

6 files changed

+762
-216
lines changed

.github/workflows/go-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
submodules: recursive
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: "1.16.x"
17+
go-version: "1.17.x"
1818
- name: Install staticcheck
1919
run: go install honnef.co/go/tools/cmd/staticcheck@434f5f3816b358fe468fa83dcba62d794e7fe04b # 2021.1 (v0.2.0)
2020
- name: Check that go.mod is tidy

.github/workflows/go-test-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-go@v2
14+
with:
15+
go-version: '1.17.x'
1416
- name: Start local S3
1517
run: docker-compose up -d
1618
- name: Run integration tests

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ "ubuntu", "windows", "macos" ]
13-
go: [ "1.15.x", "1.16.x" ]
13+
go: [ "1.16.x", "1.17.x" ]
1414
runs-on: ${{ matrix.os }}-latest
1515
name: ${{ matrix.os}} (go ${{ matrix.go }})
1616
steps:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ module github.com/ipfs/go-ds-s3
22

33
require (
44
github.com/aws/aws-sdk-go v1.35.30
5-
github.com/ipfs/go-datastore v0.4.5
6-
github.com/ipfs/go-ipfs v0.8.0
5+
github.com/ipfs/go-datastore v0.5.1
6+
github.com/ipfs/go-ipfs v0.11.0-rc1
77
)
88

99
go 1.15

0 commit comments

Comments
 (0)