-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update for using on bare metal without GHA (#29)
- Loading branch information
Showing
3 changed files
with
8 additions
and
8 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
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
git config --global user.email "<[email protected]>" | ||
- name: Get semver-tags | ||
run: | | ||
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.2/semver-tags.tar.gz -O - | tar -xz | ||
wget -c https://github.com/catalystcommunity/semver-tags/releases/download/v0.3.3/semver-tags.tar.gz -O - | tar -xz | ||
- name: Semver Tags Run | ||
id: semver-tags | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ LABEL maintainer="Catalyst Community <[email protected]>" | |
|
||
WORKDIR /workspace | ||
ARG TARGETPLATFORM=amd64 | ||
ARG RUNNER_VERSION=2.308.0 | ||
ARG RUNNER_VERSION=2.321.0 | ||
ARG DOCKER_CHANNEL=stable | ||
ARG DOCKER_VERSION=24.0.5 | ||
ARG DOCKER_VERSION=27.3.1 | ||
ARG DUMB_INIT_VERSION=1.2.5 | ||
ARG GO_VERSION=1.21.4 | ||
ARG GO_VERSION=1.23.3 | ||
|
||
# Get all the tools in and up to date | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
@@ -59,8 +59,8 @@ RUN apt update -y \ | |
#RUN pip3 install --upgrade --break-system-packages pip | ||
RUN pip3 install --break-system-packages setuptools watchdog poetry yq yamllint | ||
|
||
# Get all the node tooling in with 18.x | ||
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - | ||
# Get all the node tooling in with 22.x | ||
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - | ||
RUN apt-get install -y nodejs | ||
|
||
RUN npm install -g yarn | ||
|