Skip to content

Commit

Permalink
node upgrade, set gh workflow runner to ubuntu20
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-m-dev committed Jul 28, 2023
1 parent 6c95bc4 commit 8388418
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/aliro_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build_int_test:
name: Integration Tests
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
build_web_app:
name: Unit Tests for Webapp
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion docker/lab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update --fix-missing && \
i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& wget --quiet https://nodejs.org/dist/v16.18.1/node-v16.18.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
&& wget --quiet https://nodejs.org/dist/v16.20.1/node-v16.20.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
tar -xvf ~/node.tar.xz -C /usr/local/ --strip-components=1 --no-same-owner && \
rm ~/node.tar.xz && \
ln -s /usr/local/bin/node /usr/local/bin/nodejs && \
Expand Down
2 changes: 1 addition & 1 deletion docker/machine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update --fix-missing && apt-get install -y \
i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& wget --quiet https://nodejs.org/dist/v16.18.1/node-v16.18.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
&& wget --quiet https://nodejs.org/dist/v16.20.1/node-v16.20.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
tar -xvf ~/node.tar.xz -C /usr/local/ --strip-components=1 --no-same-owner && \
rm ~/node.tar.xz && \
ln -s /usr/local/bin/node /usr/local/bin/nodejs && \
Expand Down

0 comments on commit 8388418

Please sign in to comment.