Compare commits

...

9 Commits

Author SHA1 Message Date
Federico Builes 1db3859355 Updating README. 2024-01-10 19:31:52 +01:00
Federico Builes 9aded48345 Merge pull request #67 from takost/update-version
Update version of the action
2024-01-10 19:24:16 +01:00
Tatyana Kostromskaya 2cf691415a . 2024-01-10 14:06:12 +00:00
Tatyana Kostromskaya 1f44486d0f Rebuild index.js 2024-01-10 14:01:20 +00:00
Tatyana Kostromskaya 48da37c7b0 Update version 2024-01-10 13:51:15 +00:00
Federico Builes b06941e7bf Merge pull request #66 from takost/update-to-node-20
Update action to node20
2023-12-01 17:47:25 +01:00
Tatyana Kostromskaya 112d372804 Add --forceExit for jest 2023-11-29 15:52:57 +00:00
Tatyana Kostromskaya 5e5b8b9d64 Merge branch 'actions:update-to-node-20' into update-to-node-20 2023-11-29 16:51:33 +01:00
Tatyana Kostromskaya c610a9900d Update dist 2023-11-29 15:40:25 +00:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ jobs:
go-version: ">=1.18.0"
- name: Run snapshot action
uses: actions/go-dependency-submission@v1
uses: actions/go-dependency-submission@v2
with:
# Required: Define the repo path to the go.mod file used by the
# build target
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "go-dependency-submission",
"version": "1.0.0",
"version": "2.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "go-dependency-submission",
"version": "1.0.0",
"version": "2.0.0",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.9.1",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "go-dependency-submission",
"version": "1.0.0",
"version": "2.0.0",
"description": "Go Dependency Submission",
"main": "dist/index.js",
"scripts": {
@@ -9,7 +9,7 @@
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test": "jest --testTimeout=10000",
"test:watch": "jest --watch src",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},