Skip to content

Commit

Permalink
Update various dependencies used in actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wookie184 committed May 20, 2024
1 parent 91914e3 commit 617337a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/event-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12

- name: Install dependencies
run: python -m pip install -r events/requirements.txt
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Upload a Build Artifact
if: always() && steps.prepare-artifact.outcome == 'success'
continue-on-error: true
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pull-request-payload
path: pull_request_payload.json
6 changes: 3 additions & 3 deletions events/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Python: 3.8
python-frontmatter==1.0.0
pyyaml==5.4.1
# Python: 3.12
python-frontmatter==1.1.0
pyyaml==6.0.1

0 comments on commit 617337a

Please sign in to comment.