Skip to content

Commit a903e16

Browse files
committed
bump versions to v0.4.23
1 parent 0125bf1 commit a903e16

File tree

3 files changed

+8
-17
lines changed

3 files changed

+8
-17
lines changed

.github/workflows/on-tag.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ jobs:
2525
DOCKER_BUILDKIT: 1
2626
APP: ipfs
2727
FLAV_ARCH: "${{matrix.flavor}}-${{matrix.arch}}"
28+
QEMU_VERSION: v4.2.0
2829

2930
steps:
30-
- uses: actions/checkout@v1.0.0
31+
- uses: actions/checkout@v2.0.0
3132

3233
## Set full name of a git-${TAG}
3334
# fmt: vX.Y.Z[+build<N>]
@@ -98,8 +99,6 @@ jobs:
9899
99100
- name: Register self-compiled qemu
100101
if: matrix.flavor == 'fuse' && matrix.arch != 'amd64'
101-
env:
102-
QEMU_VERSION: v4.2.0
103102
run: docker run --rm --privileged "meedamian/simple-qemu:${QEMU_VERSION}" -p yes
104103

105104
- name: Build IPFS
@@ -160,7 +159,7 @@ jobs:
160159
needs: build
161160

162161
steps:
163-
- uses: actions/checkout@v1.0.0
162+
- uses: actions/checkout@v2.0.0
164163

165164
- name: Setup environment
166165
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
FLAV_ARCH: "${{matrix.flavor}}-${{matrix.arch}}"
2929

3030
steps:
31-
- uses: actions/checkout@v1.0.0
31+
- uses: actions/checkout@v2.0.0
3232

3333
- name: Setup environment
3434
if: matrix.arch != 'amd64'

Dockerfile

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# 2. `fuse` - enable mounting `/ipns/` & `/ipfs/`, and file system level interactions
44

55
# IPFS version to be built
6-
ARG VERSION=v0.4.22
6+
ARG VERSION=v0.4.23
77

88
# Target CPU archtecture of built IPFS binary
99
ARG ARCH
@@ -90,19 +90,11 @@ RUN git verify-tag "${VERSION}"
9090

9191
RUN env && go version && go env
9292

93-
# NOTE: Fix as per https://github.com/ipfs/go-ipfs/issues/6795#issuecomment-571165734
94-
RUN go mod edit \
95-
-replace github.com/go-critic/go-critic=github.com/go-critic/[email protected] \
96-
-replace github.com/golangci/errcheck=github.com/golangci/[email protected] \
97-
-replace github.com/golangci/go-tools=github.com/golangci/[email protected] \
98-
-replace github.com/golangci/gofmt=github.com/golangci/[email protected] \
99-
-replace github.com/golangci/gosec=github.com/golangci/[email protected] \
100-
-replace github.com/golangci/lint-1=github.com/golangci/[email protected] \
101-
-replace mvdan.cc/unparam=mvdan.cc/[email protected] \
102-
-replace golang.org/x/xerrors=golang.org/x/[email protected]
103-
10493
RUN go mod tidy
10594

95+
# Annoying unformatted space, is annoying 😅
96+
RUN go fmt ./core/coreapi/unixfs.go
97+
10698
RUN git diff
10799

108100

0 commit comments

Comments
 (0)