Skip to content

Commit

Permalink
chore: toolchain update
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmalkmus committed Feb 27, 2023
1 parent ab31fc1 commit 3bc8d5e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
check-latest: true
cache: true
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v3
- uses: goreleaser/goreleaser-action@v4
with:
args: build --snapshot
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
check-latest: true
cache: true
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v3
- uses: goreleaser/goreleaser-action@v4
with:
args: build --snapshot
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- uses: goreleaser/goreleaser-action@v3
- uses: goreleaser/goreleaser-action@v4
with:
args: release
env:
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ GO_BIN_IN_PATH := CGO_ENABLED=0 go
GOFMT := $(GO)fmt

# ENVIRONMENT
VERBOSE =
GOPATH := $(GOPATH)
VERBOSE =
GOPATH := $(GOPATH)

# APPLICATION INFORMATION
BUILD_DATE := $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
REVISION := $(shell git rev-parse --short HEAD)
RELEASE := $(shell git describe --tags 2>/dev/null || git rev-parse --short HEAD)-dev
USER := $(shell whoami)
BUILD_DATE := $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
REVISION := $(shell git rev-parse --short HEAD)
RELEASE := $(shell git describe --tags 2>/dev/null || git rev-parse --short HEAD)-dev
USER := $(shell whoami)

# TOOLS
GEN_CLI_DOCS := bin/gen-cli-docs
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@

[Axiom](https://axiom.co) unlocks observability at any scale.

- **Ingest with ease, store without limits:** Axioms next-generation datastore
- **Ingest with ease, store without limits:** Axiom's next-generation datastore
enables ingesting petabytes of data with ultimate efficiency. Ship logs from
Kubernetes, AWS, Azure, Google Cloud, DigitalOcean, Nomad, and others.
- **Query everything, all the time:** Whether DevOps, SecOps, or EverythingOps,
query all your data no matter its age. No provisioning, no moving data from
cold/archive to "hot", and no worrying about slow queries. All your data, all.
the. time.
- **Powerful dashboards, for continuous observability:** Build dashboards to
collect related queries and present information thats quick and easy to
collect related queries and present information that's quick and easy to
digest for you and your team. Dashboards can be kept private or shared with
others, and are the perfect way to bring together data from different sources.

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/axiomhq/cli

go 1.19
go 1.20

require (
github.com/AlecAivazis/survey/v2 v2.3.6
Expand Down

0 comments on commit 3bc8d5e

Please sign in to comment.