Skip to content

Commit 9fbc8ca

Browse files
committed
⬆️ Update Go version to 1.21.3
1 parent 3275e9e commit 9fbc8ca

File tree

6 files changed

+78
-513
lines changed

6 files changed

+78
-513
lines changed

.github/workflows/codeql-analysis.yml

-25
This file was deleted.

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Set up Go
10-
uses: actions/setup-go@v4
10+
uses: actions/setup-go@v5
1111
with:
12-
go-version: "1.20"
12+
go-version: "1.21"
1313
- name: Checkout repo
1414
uses: actions/checkout@v4
1515
- name: Lint code

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/setup-go@v4
1414
with:
15-
go-version: "1.20"
15+
go-version: "1.21.3"
1616
- uses: actions/checkout@v4
1717
- uses: golangci/golangci-lint-action@v3
1818
- run: make test

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
A Web GUI written in Go to manage S3 buckets from any provider.
77

8-
![Screenshot](https://raw.githubusercontent.com/cloudlena/s3manager/master/screenshot.png)
8+
![Screenshot](https://raw.githubusercontent.com/cloudlena/s3manager/main/screenshot.png)
99

1010
## Features
1111

@@ -70,7 +70,7 @@ The image is available on [Docker Hub](https://hub.docker.com/r/cloudlena/s3mana
7070

7171
### Run Locally for Testing
7272

73-
There is an example [docker-compose.yml](https://github.com/cloudlena/s3manager/blob/master/docker-compose.yml) file that spins up an S3 service and the s3manager. You can try it by issuing the following command:
73+
There is an example [docker-compose.yml](https://github.com/cloudlena/s3manager/blob/main/docker-compose.yml) file that spins up an S3 service and the s3manager. You can try it by issuing the following command:
7474

7575
```shell
7676
$ docker-compose up

go.mod

+21-17
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,45 @@
11
module github.com/cloudlena/s3manager
22

3-
go 1.19
3+
go 1.21.5
44

55
require (
6-
github.com/cloudlena/adapters v0.0.0-20230410212441-d7669b7e557b
7-
github.com/gorilla/mux v1.8.0
6+
github.com/cloudlena/adapters v0.0.0-20231026063741-fb9c991fff9e
7+
github.com/gorilla/mux v1.8.1
88
github.com/matryer/is v1.4.1
9-
github.com/minio/minio-go/v7 v7.0.63
10-
github.com/spf13/viper v1.16.0
9+
github.com/minio/minio-go/v7 v7.0.65
10+
github.com/spf13/viper v1.18.1
1111
)
1212

1313
require (
1414
github.com/dustin/go-humanize v1.0.1 // indirect
15-
github.com/fsnotify/fsnotify v1.6.0 // indirect
16-
github.com/google/uuid v1.3.1 // indirect
15+
github.com/fsnotify/fsnotify v1.7.0 // indirect
16+
github.com/google/uuid v1.5.0 // indirect
1717
github.com/hashicorp/hcl v1.0.0 // indirect
1818
github.com/json-iterator/go v1.1.12 // indirect
19-
github.com/klauspost/compress v1.17.0 // indirect
20-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
19+
github.com/klauspost/compress v1.17.4 // indirect
20+
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
2121
github.com/magiconair/properties v1.8.7 // indirect
2222
github.com/minio/md5-simd v1.1.2 // indirect
2323
github.com/minio/sha256-simd v1.0.1 // indirect
2424
github.com/mitchellh/mapstructure v1.5.0 // indirect
2525
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2626
github.com/modern-go/reflect2 v1.0.2 // indirect
27-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
27+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
2828
github.com/rs/xid v1.5.0 // indirect
29+
github.com/sagikazarmark/locafero v0.4.0 // indirect
30+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
2931
github.com/sirupsen/logrus v1.9.3 // indirect
30-
github.com/spf13/afero v1.10.0 // indirect
31-
github.com/spf13/cast v1.5.1 // indirect
32-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
32+
github.com/sourcegraph/conc v0.3.0 // indirect
33+
github.com/spf13/afero v1.11.0 // indirect
34+
github.com/spf13/cast v1.6.0 // indirect
3335
github.com/spf13/pflag v1.0.5 // indirect
3436
github.com/subosito/gotenv v1.6.0 // indirect
35-
golang.org/x/crypto v0.13.0 // indirect
36-
golang.org/x/net v0.15.0 // indirect
37-
golang.org/x/sys v0.12.0 // indirect
38-
golang.org/x/text v0.13.0 // indirect
37+
go.uber.org/multierr v1.11.0 // indirect
38+
golang.org/x/crypto v0.16.0 // indirect
39+
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
40+
golang.org/x/net v0.19.0 // indirect
41+
golang.org/x/sys v0.15.0 // indirect
42+
golang.org/x/text v0.14.0 // indirect
3943
gopkg.in/ini.v1 v1.67.0 // indirect
4044
gopkg.in/yaml.v3 v3.0.1 // indirect
4145
)

0 commit comments

Comments
 (0)