-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from StrangeRanger/dev
Upgrade actions used
- Loading branch information
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,12 @@ jobs: | |
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
|
||
|
@@ -31,7 +31,6 @@ jobs: | |
git config user.name "github-actions[bot]" | ||
git config user.email "[email protected]" | ||
# Step 5: Commit the changes if there are any | ||
- name: Commit Changes | ||
run: | | ||
git add . | ||
|
@@ -42,13 +41,13 @@ jobs: | |
git push origin HEAD:update-file-after-submodule | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
#token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Update file after submodule update" | ||
title: "Update File After Submodule Update" | ||
body: | | ||
This pull request updates the relevant files after a submodule update by Dependabot. | ||
base: main | ||
head: update-file-after-submodule | ||
|
||
|