Skip to content

Commit 6ba6c89

Browse files
authored
Bump google-translate-api-x from 10.6.8 to 10.7.1 (#154)
<!-- markdownlint-disable-file MD041 --> ## Pull request checklist Please check if your PR fulfills the following requirements: - [ ] I have read the [CONTRIBUTING](https://github.com/fabasoad/translation-action/blob/main/CONTRIBUTING.md) doc. - [ ] Tests for the changes have been added (for bug fixes / features). - [ ] Docs have been reviewed and added / updated if needed (for bug fixes / features). - [ ] Build (`yarn run build`) was run locally and any changes were pushed. - [ ] Tests (`yarn test`) has passed locally and any fixes were made for failures. ## Pull request type <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> ## What is the new behavior <!-- Please describe the behavior or changes that are being added by this PR. --> - - - ## Does this introduce a breaking change - [ ] Yes - [ ] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. --> <!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) repository. --> --- Closes #{IssueNumber}
1 parent b3d8c2b commit 6ba6c89

File tree

9 files changed

+1292
-1200
lines changed

9 files changed

+1292
-1200
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/** linguist-generated=true

.pre-commit-config.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,29 @@ repos:
4444
hooks:
4545
- id: gitleaks
4646
- repo: https://github.com/fabasoad/pre-commit-snyk
47-
rev: v0.6.2
47+
rev: v1.0.0
4848
hooks:
4949
- id: snyk-test
50+
args:
51+
- --snyk-args=--all-projects --severity-threshold=low
52+
- --hook-args=--log-level debug
5053
stages: ["push"]
5154
- repo: https://github.com/fabasoad/pre-commit-grype
52-
rev: v0.3.1
55+
rev: v0.6.1
5356
hooks:
5457
- id: grype-dir
5558
args:
56-
- --grype-args=--by-cve --fail-on=low
59+
- --grype-args=--by-cve --fail-on=low --exclude=**/node_modules
5760
- --hook-args=--log-level debug
5861
stages: ["push"]
62+
- repo: https://github.com/google/osv-scanner
63+
rev: v1.8.4
64+
hooks:
65+
- id: osv-scanner
66+
args:
67+
- --lockfile=yarn.lock
68+
verbose: true
69+
stages: ["push"]
5970
# Markdown
6071
- repo: https://github.com/igorshubovych/markdownlint-cli
6172
rev: v0.41.0

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 22.3.0
1+
nodejs 22.7.0

.yarn/releases/yarn-4.3.1.cjs

Lines changed: 0 additions & 894 deletions
This file was deleted.

.yarn/releases/yarn-4.4.1.cjs

Lines changed: 925 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
55
spec: "https://mskelton.dev/yarn-outdated/v2"
66

7-
yarnPath: .yarn/releases/yarn-4.3.1.cjs
7+
yarnPath: .yarn/releases/yarn-4.4.1.cjs

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "translation-action",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "This GitHub action translates any text from any language to any language.",
55
"main": "dist/index.js",
66
"scripts": {
@@ -27,9 +27,9 @@
2727
"dependencies": {
2828
"@actions/core": "1.10.1",
2929
"cross-fetch": "4.0.0",
30-
"deepl-node": "1.13.0",
31-
"google-translate-api-x": "10.6.8",
32-
"typed-rest-client": "2.0.1"
30+
"deepl-node": "1.13.1",
31+
"google-translate-api-x": "10.7.1",
32+
"typed-rest-client": "2.0.2"
3333
},
3434
"devDependencies": {
3535
"@biomejs/biome": "1.8.3",
@@ -39,8 +39,8 @@
3939
"jest": "29.7.0",
4040
"jest-circus": "29.7.0",
4141
"mocha-param": "2.0.1",
42-
"ts-jest": "29.1.5",
43-
"typescript": "5.5.3"
42+
"ts-jest": "29.2.5",
43+
"typescript": "5.5.4"
4444
},
45-
"packageManager": "yarn@4.3.1"
45+
"packageManager": "yarn@4.4.1"
4646
}

0 commit comments

Comments
 (0)