Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.1.1"
".": "2.1.2"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [2.1.2](https://github.com/sgoudham/update-git-submodules/compare/v2.1.1...v2.1.2) (2025-04-02)


### Bug Fixes

* **deps:** update dependency @actions/core to v1.11.1 ([#48](https://github.com/sgoudham/update-git-submodules/issues/48)) ([463aade](https://github.com/sgoudham/update-git-submodules/commit/463aade2e6a94ec695833c99117c0ab807aaf64a))
* **deps:** update dependency ini to v5 ([#29](https://github.com/sgoudham/update-git-submodules/issues/29)) ([001f76f](https://github.com/sgoudham/update-git-submodules/commit/001f76f911db6ff69af2a510462175781332594a))
* **deps:** update dependency zod to v3.24.2 ([#56](https://github.com/sgoudham/update-git-submodules/issues/56)) ([4b4587e](https://github.com/sgoudham/update-git-submodules/commit/4b4587e8bd7829e616579aab277f1c695c3bb70b))
* support multiple URL protocols ([#76](https://github.com/sgoudham/update-git-submodules/issues/76)) ([058d448](https://github.com/sgoudham/update-git-submodules/commit/058d44802b60634ca7476b607a3f8f06641ecadb))

## [2.1.1](https://github.com/sgoudham/update-git-submodules/compare/v2.1.0...v2.1.1) (2024-08-30)


Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ latest commit.
<!-- x-release-please-start-version -->

```yaml
- uses: sgoudham/[email protected].1
- uses: sgoudham/[email protected].2
with:
# The path to the '.gitmodules' file.
#
Expand Down Expand Up @@ -117,15 +117,15 @@ the path is `ports/vscode-icons`, the dynamic outputs will be:
```yaml
- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2
```

### Update all submodules to the latest tag

```yaml
- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2
with:
strategy: tag
```
Expand All @@ -135,7 +135,7 @@ the path is `ports/vscode-icons`, the dynamic outputs will be:
```yaml
- name: Update Submodule
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2
with:
submodules: ports/vscode-icons
```
Expand All @@ -145,7 +145,7 @@ the path is `ports/vscode-icons`, the dynamic outputs will be:
```yaml
- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2
with:
submodules: |
ports/nvim
Expand All @@ -167,7 +167,7 @@ steps:

- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2

- name: Create PR
uses: peter-evans/create-pull-request@v6
Expand All @@ -191,7 +191,7 @@ steps:

- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2

- name: Create PR
uses: peter-evans/create-pull-request@v6
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:

- name: Update Submodules
id: submodules
uses: sgoudham/[email protected].1
uses: sgoudham/[email protected].2
with:
submodules: ${{ matrix.submodule }}
strategy: ${{ matrix.strategy }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "update-git-submodules",
"description": "Update git submodule(s) to their latest commit or tag",
"version": "2.1.1",
"version": "2.1.2",
"author": "Goudham <[email protected]>",
"private": true,
"homepage": "https://github.com/sgoudham/update-git-submodules",
Expand Down