Skip to content

Commit e4fca0d

Browse files
authored
Merge pull request #94 from nanos/node-16-depracation
Update some actions to use Node 20, now that Node 16 is deprecated
2 parents a8dc809 + fe1c69f commit e4fca0d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/get_context.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
environment: mastodon
1313
steps:
1414
- name: Checkout original repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.10'
2222
cache: 'pip' # caching pip dependencies
2323
- run: pip install -r requirements.txt
2424
- name: Download all workflow run artifacts
25-
uses: dawidd6/action-download-artifact@v2
25+
uses: dawidd6/action-download-artifact@v3
2626
with:
2727
name: artifacts
2828
workflow: get_context.yml
@@ -32,12 +32,12 @@ jobs:
3232
run: ls -lR
3333
- run: python find_posts.py --lock-hours=0 --access-token=${{ secrets.ACCESS_TOKEN }} -c="./config.json"
3434
- name: Upload artifacts
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: artifacts
3838
path: |
3939
artifacts
4040
- name: Checkout user's forked repository for keeping workflow alive
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
- name: Keep workflow alive
43-
uses: gautamkrishnar/keepalive-workflow@v1
43+
uses: gautamkrishnar/keepalive-workflow@v1

0 commit comments

Comments
 (0)