Skip to content

Commit

Permalink
Merge pull request #65 from StrangeRanger/dev
Browse files Browse the repository at this point in the history
Upgrade actions used
  • Loading branch information
StrangeRanger authored Nov 19, 2024
2 parents 4fdfa8a + 80aa84f commit ceaf254
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/update_from_submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -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 .
Expand All @@ -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


0 comments on commit ceaf254

Please sign in to comment.