Skip to content

Commit 8caad62

Browse files
Merge pull request #525 from bento-platform/chore/update
chore: update lockfile deps, ci actions
2 parents 3e7cf32 + ecd33a7 commit 8caad62

File tree

5 files changed

+162
-168
lines changed

5 files changed

+162
-168
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Run Bento build action
2929
uses: bento-platform/bento_build_action@v1.0.0

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- name: Install modules
1313
run: npm install
1414
- name: Build
1515
run: npm run build
1616
lint:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Install modules
2121
run: npm install
2222
- name: Run linter

Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ FROM nginx:1.28
2929
# Install node so that we can run the create_config_prod.js & create_service_info.js scripts
3030
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
3131
apt-get update -y && \
32-
apt-get install -y ca-certificates curl gnupg && \
33-
mkdir -p /etc/apt/keyrings && \
34-
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | \
35-
gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
36-
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" | \
37-
tee /etc/apt/sources.list.d/nodesource.list && \
3832
apt-get install -y nodejs && \
3933
rm -rf /var/lib/apt/lists/*
4034

0 commit comments

Comments
 (0)