Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #397

Merged
merged 3 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Generate github token
id: generate_token
uses: actions/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/cd-for-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/cd-for-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-for-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
LATEST_TAG: ${{ steps.genelate_latest_tag.outputs.LATEST_TAG }}
steps:
- name: Check out the repo
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Get current version
id: get_version
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand All @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Setup asdf
uses: asdf-vm/actions/[email protected]
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enable-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Generate github token
id: generate_token
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].4
uses: actions/[email protected].6
- name: Prepare for build
id: prepare-for-build
run: |
Expand Down
8 changes: 4 additions & 4 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nodejs 20.12.2
pnpm 9.0.6
nodejs 20.13.1
pnpm 9.1.3
python 3.11.6
kubectl 1.30.0
argocd 2.10.9
kubectl 1.30.1
argocd 2.11.2
14 changes: 9 additions & 5 deletions infra/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG NODE_VERSION=20.12.2-bookworm
ARG NODE_VERSION=20.13.1-bookworm

FROM node:${NODE_VERSION} AS builder
FROM node:${NODE_VERSION} AS base

RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
Expand All @@ -16,8 +16,11 @@ WORKDIR /jetdisc

COPY --link ["pnpm-lock.yaml", "package.json", "./"]

RUN --mount=type=cache,target=/root/.local/share/pnpm/store,sharing=locked \
pnpm i --frozen-lockfile --aggregate-output
FROM base AS prod-deps
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile

FROM base AS builder
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile

COPY --link . ./

Expand All @@ -43,10 +46,11 @@ RUN apt-get update \
USER jetdisc
WORKDIR /jetdisc

COPY --chown=jetdisc:jetdisc --from=builder /jetdisc/node_modules ./node_modules
COPY --chown=jetdisc:jetdisc --from=prod-deps /jetdisc/node_modules ./node_modules
COPY --chown=jetdisc:jetdisc --from=builder /jetdisc/built ./built
COPY --chown=jetdisc:jetdisc . ./

ENV NODE_ENV=production

ENTRYPOINT ["/usr/bin/tini", "--"]
CMD ["pnpm", "run", "start"]
58 changes: 29 additions & 29 deletions infra/terraform/cloudflare/envs/main/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infra/terraform/cloudflare/envs/main/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "1.8.2"
required_version = "1.8.4"

required_providers {
cloudflare = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "1.8.2"
required_version = "1.8.4"

required_providers {
cloudflare = {
Expand Down
2 changes: 1 addition & 1 deletion infra/terraform/cloudflare/modules/app/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "1.8.2"
required_version = "1.8.4"

required_providers {
cloudflare = {
Expand Down
15 changes: 6 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.2.0",
"@eslint/js": "9.3.0",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.2",
"@swc/core": "1.5.7",
"@tsconfig/strictest": "2.0.5",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.10",
"@vitest/coverage-v8": "1.6.0",
"eslint": "9.2.0",
"eslint": "9.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"prettier": "3.2.5",
"tsx": "4.9.3",
"tsx": "4.11.0",
"typescript": "5.4.5",
"typescript-eslint": "7.8.0",
"typescript-eslint": "7.10.0",
"vitest": "1.6.0"
},
"dependencies": {
Expand All @@ -47,9 +47,6 @@
"lodash-es": "4.17.21",
"resolve": "1.22.8",
"ytdl-core": "4.11.5",
"zod": "3.23.6"
},
"resolutions": {
"vite": "5.2.11"
"zod": "3.23.8"
}
}
Loading