-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[versions] bump
node
and golang
to modern versions
- Loading branch information
Showing
9 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.22.7 | ||
18.15.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM circleci/node:10 | ||
FROM circleci/node:18 | ||
MAINTAINER Connor McEwen <[email protected]> | ||
|
||
RUN sudo apt-get update -y | ||
|
@@ -16,17 +16,17 @@ RUN export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)" && \ | |
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - && \ | ||
sudo apt-get update -y && sudo apt-get install google-cloud-sdk -y | ||
|
||
RUN sudo wget https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz && \ | ||
sudo tar xf go1.13.5.linux-amd64.tar.gz -C /usr/local | ||
RUN sudo wget https://dl.google.com/go/go1.19.7.linux-amd64.tar.gz && \ | ||
sudo tar xf go1.19.7.linux-amd64.tar.gz -C /usr/local | ||
|
||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y | ||
|
||
ENV PATH="/usr/local/go/bin:/home/circleci/.cargo/bin:${PATH}" | ||
|
||
RUN go version | ||
|
||
RUN rustup install 1.41.0 && \ | ||
rustup default 1.41.0 | ||
RUN rustup install 1.68.2 && \ | ||
rustup default 1.68.2 | ||
|
||
RUN mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:12 | ||
FROM node:18 | ||
WORKDIR /celo-monorepo | ||
|
||
# ensure yarn.lock is evaluated by kaniko cache diff | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:12 | ||
FROM node:18 | ||
WORKDIR /celo-monorepo | ||
|
||
RUN apt-get update && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters