File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -150,14 +150,14 @@ jobs:
150
150
dockerRunArgs : -v $GITHUB_WORKSPACE:/src --cgroupns=host
151
151
152
152
# Set an output parameter `uname` for use in subsequent steps
153
- install : |
153
+ run : |
154
154
uname -a
155
155
echo ::set-output name=uname::$(uname -a)
156
156
# setup golang
157
157
apt-get update
158
158
apt-get install -yy wget curl tar software-properties-common git pkgconf build-essential
159
159
cd /tmp
160
- wget -N https://go.dev/dl/go1.20.5 .linux-${{ matrix.arch }}.tar.gz
160
+ wget -N https://go.dev/dl/go1.20.8 .linux-${{ matrix.arch }}.tar.gz
161
161
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.5.linux-${{ matrix.arch }}.tar.gz
162
162
export PATH=$PATH:/usr/local/go/bin
163
163
# install dependencies
@@ -168,7 +168,7 @@ jobs:
168
168
GO111MODULE=off go get github.com/opencontainers/umoci/cmd/umoci
169
169
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
170
170
apt-get install -yy autoconf automake make autogen autoconf libtool binutils git squashfs-tools libcryptsetup-dev libdevmapper-dev cryptsetup-bin squashfuse
171
- run : |
171
+ export PATH=$PATH:/usr/local/go/bin
172
172
cd /src
173
173
make go-download
174
174
make show-info
You can’t perform that action at this time.
0 commit comments