Skip to content

Commit

Permalink
Update dev dependencies (#777)
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
robinraju authored Mar 6, 2025
1 parent 21a0a3a commit daf26c5
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 51 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/update-main-version.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# This workflow is used to move the major version tag (such as v1, v2)
# This workflow is used to move the major version tag (such as v1, v2)
# to point to the Git ref of the current release.
# This allows users to use the latest version of this action by specifying the major version.

name: Update Main Version
run-name: Move ${{ github.event.inputs.major_version }} to ${{ github.event.inputs.target }}
run-name:
Move ${{ github.event.inputs.major_version }} to ${{
github.event.inputs.target }}

on:
workflow_dispatch:
Expand All @@ -21,14 +23,16 @@ jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Tag new target
run: git tag -f ${{ github.event.inputs.major_version }} ${{ github.event.inputs.target }}
- name: Push new tag
run: git push origin ${{ github.event.inputs.major_version }} --force
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Tag new target
run:
git tag -f ${{ github.event.inputs.major_version }} ${{
github.event.inputs.target }}
- name: Push new tag
run: git push origin ${{ github.event.inputs.major_version }} --force
96 changes: 68 additions & 28 deletions dist/index.js

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

16 changes: 8 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"nock": "^13.5.6",
"prettier": "3.3.2",
"prettier": "3.5.3",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.6",
"typescript": "5.5.3"
"typescript": "5.8.2"
}
}

0 comments on commit daf26c5

Please sign in to comment.