diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4ae7f3a..117ba60 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build extension run: make extension env: diff --git a/Dockerfile b/Dockerfile index 3bc1f98..11d63e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM alpine AS tailscale RUN apk add --no-cache curl ARG TARGETARCH -ARG TSVERSION=1.34.0 +ARG TSVERSION=1.36.2 RUN curl -fSsLo /tmp/tailscale.tgz https://pkgs.tailscale.com/stable/tailscale_${TSVERSION}_${TARGETARCH}.tgz \ && mkdir /out \ && tar -C /out -xzf /tmp/tailscale.tgz --strip-components=1 -FROM node:14.17-alpine AS ui-builder +FROM node:18.14-alpine AS ui-builder WORKDIR /app/ui # cache packages in layer COPY ui/package.json /app/ui/package.json