diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 5f9ab8d8..85308905 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -103,4 +103,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: krzema12/github-actions-typing@v1 + - uses: typesafegithub/github-actions-typing@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e712609d..68614fc0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - run: npm install - run: npm run all - - uses: stefanzweifel/git-auto-commit-action@v4.16.0 + - uses: stefanzweifel/git-auto-commit-action@v5 with: file_pattern: dist/** @@ -34,7 +34,7 @@ jobs: - run: git push --force --tags origin - - uses: softprops/action-gh-release@v1 + - uses: softprops/action-gh-release@v2 with: name: v${{ steps.parsedVersion.outputs.major }}.${{ steps.parsedVersion.outputs.minor }}.${{ steps.parsedVersion.outputs.patch }} tag_name: v${{ steps.parsedVersion.outputs.major }}.${{ steps.parsedVersion.outputs.minor }}.${{ steps.parsedVersion.outputs.patch }} diff --git a/package-lock.json b/package-lock.json index f7c38ff4..b0953348 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "semver-utils", - "version": "4.0.0", + "version": "4.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "semver-utils", - "version": "4.0.0", + "version": "4.1.0", "license": "MIT", "dependencies": { - "@actions/core": "^1.10.0", + "@actions/core": "^1.10.1", "@types/semver": "^7.5.8", "semver": "^7.6.2" }, @@ -41,9 +41,9 @@ } }, "node_modules/@actions/core": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", - "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", + "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", "dependencies": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" @@ -7681,9 +7681,9 @@ "dev": true }, "@actions/core": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz", - "integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", + "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", "requires": { "@actions/http-client": "^2.0.1", "uuid": "^8.3.2" diff --git a/package.json b/package.json index f5e199e3..a271ec5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "semver-utils", - "version": "4.0.0", + "version": "4.1.0", "private": true, "description": "One-stop shop for working with semantic versions in your workflows", "main": "lib/main.js", @@ -26,7 +26,7 @@ "author": "madhead (https://madhead.me)", "license": "MIT", "dependencies": { - "@actions/core": "^1.10.0", + "@actions/core": "^1.10.1", "@types/semver": "^7.5.8", "semver": "^7.6.2" },