Skip to content

Commit

Permalink
bump action version
Browse files Browse the repository at this point in the history
  • Loading branch information
w-e-w committed Mar 10, 2024
1 parent e389e61 commit 77b3cf9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ jobs:

steps:
- name: Checkout extensions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
ref: 'extensions'
path: extensions

- name: Checkout master
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
ref: 'master'
path: master

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -50,7 +50,7 @@ jobs:
run: echo "msg=$(git -C master log -1 --pretty=%s)" >> $GITHUB_OUTPUT

- name: Commit - master
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: ${{ steps.last-commit-message-master.outputs.msg }}
commit_options: '--amend --no-edit'
Expand All @@ -60,7 +60,7 @@ jobs:
repository: master

- name: Commit - extensions
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: ${{ steps.last-commit-message-extensions.outputs.msg }}
commit_options: '--amend --no-edit'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:

steps:
- name: Checkout extensions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 'extensions'
path: extensions

- name: Checkout master
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 'master'
path: master

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand All @@ -39,7 +39,7 @@ jobs:
run: echo "date=$(date -u +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Commit - master
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update metadata ${{ steps.current-date.outputs.date }}
file_pattern: '*.json'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate_entries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down

0 comments on commit 77b3cf9

Please sign in to comment.