1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00

build(deps): update latest

This commit is contained in:
Divlo 2023-04-02 22:25:13 +02:00
parent bc6ad699fc
commit 76bb060ecd
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
7 changed files with 1679 additions and 654 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
timeout-minutes: 30 timeout-minutes: 30
steps: steps:
- uses: 'actions/checkout@v3.3.0' - uses: 'actions/checkout@v3.5.0'
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@ -10,7 +10,7 @@ jobs:
lint: lint:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v3.3.0' - uses: 'actions/checkout@v3.5.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v3.6.0' uses: 'actions/setup-node@v3.6.0'
@ -29,7 +29,7 @@ jobs:
build: build:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v3.3.0' - uses: 'actions/checkout@v3.5.0'
- name: 'Use Node.js' - name: 'Use Node.js'
uses: 'actions/setup-node@v3.6.0' uses: 'actions/setup-node@v3.6.0'
@ -48,7 +48,7 @@ jobs:
test: test:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- uses: 'actions/checkout@v3.3.0' - uses: 'actions/checkout@v3.5.0'
- name: 'Use Docker' - name: 'Use Docker'
uses: 'actions-hub/docker/cli@master' uses: 'actions-hub/docker/cli@master'

2269
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,50 +23,50 @@
"lint:commit": "commitlint", "lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker", "lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2", "lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\"", "lint:eslint": "eslint \".\"",
"test": "tap" "test": "tap"
}, },
"dependencies": { "dependencies": {
"chalk": "5.2.0", "chalk": "5.2.0",
"clipanion": "3.0.1", "clipanion": "3.2.0",
"date-and-time": "2.4.1", "date-and-time": "2.4.3",
"execa": "6.1.0", "execa": "7.1.1",
"log-symbols": "5.1.0", "log-symbols": "5.1.0",
"ora": "6.1.2", "ora": "6.3.0",
"replace-in-file": "6.3.5", "replace-in-file": "6.3.5",
"table": "6.8.1", "table": "6.8.1",
"typanion": "3.12.1", "typanion": "3.12.1",
"validate-npm-package-name": "5.0.0" "validate-npm-package-name": "5.0.0"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "17.4.1", "@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.0", "@commitlint/config-conventional": "17.4.4",
"@swc/cli": "0.1.57", "@swc/cli": "0.1.62",
"@swc/core": "1.3.25", "@swc/core": "1.3.44",
"@tsconfig/strictest": "1.0.2", "@tsconfig/strictest": "2.0.0",
"@types/date-and-time": "0.13.0", "@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1", "@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31", "@types/ms": "0.7.31",
"@types/node": "18.11.18", "@types/node": "18.15.11",
"@types/sinon": "10.0.13", "@types/sinon": "10.0.13",
"@types/tap": "15.0.7", "@types/tap": "15.0.8",
"@types/validate-npm-package-name": "4.0.0", "@types/validate-npm-package-name": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.48.1", "@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.48.1", "@typescript-eslint/parser": "5.57.0",
"editorconfig-checker": "4.0.2", "editorconfig-checker": "5.0.1",
"eslint": "8.31.0", "eslint": "8.37.0",
"eslint-config-conventions": "6.0.0", "eslint-config-conventions": "8.0.0",
"eslint-plugin-import": "2.26.0", "eslint-plugin-import": "2.27.5",
"eslint-plugin-promise": "6.1.1", "eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "45.0.2", "eslint-plugin-unicorn": "46.0.0",
"get-stream": "6.0.1", "get-stream": "6.0.1",
"markdownlint-cli2": "0.6.0", "markdownlint-cli2": "0.6.0",
"markdownlint-rule-relative-links": "1.1.1", "markdownlint-rule-relative-links": "1.1.2",
"mock-fs": "5.2.0", "mock-fs": "5.2.0",
"ms": "2.1.3", "ms": "2.1.3",
"rimraf": "3.0.2", "rimraf": "4.4.1",
"sinon": "15.0.1", "sinon": "15.0.3",
"tap": "16.3.3", "tap": "16.3.4",
"typescript": "4.9.4" "typescript": "5.0.3"
} }
} }

View File

@ -1,4 +1,4 @@
FROM dart:2.18.6 AS builder FROM dart:2.19.6 AS builder
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY ./ ./ COPY ./ ./
RUN dart compile exe solution.dart -o solution RUN dart compile exe solution.dart -o solution

View File

@ -1,4 +1,4 @@
FROM rust:1.66.0 AS builder FROM rust:1.68.2 AS builder
WORKDIR /usr/src/rust_application WORKDIR /usr/src/rust_application
# Cache dependencies # Cache dependencies

View File

@ -1,9 +1,9 @@
FROM node:18.13.0 AS builder-dependencies FROM node:18.15.0 AS builder-dependencies
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY ./package*.json ./ COPY ./package*.json ./
RUN npm install RUN npm install
FROM node:18.13.0 AS builder FROM node:18.15.0 AS builder
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./ COPY ./ ./