Skip to content

Commit 9bdef0d

Browse files
authored
Update GitHub Actions to the latest versions (#356)
1 parent 68eaa67 commit 9bdef0d

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v5
1515
- name: Set up Python ${{ env.PYTHON_VERSION }}
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ env.PYTHON_VERSION }}
19+
cache: 'pipenv'
1920
- name: Install pipenv
2021
run: pip install pipenv
2122
- name: Change Directory

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Code
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v5
1818
- name: Set up Python ${{ env.PYTHON_VERSION }}
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: ${{ env.PYTHON_VERSION }}
22+
cache: 'pipenv'
2223
- name: Install pipenv
2324
run: pip install pipenv
2425
- name: Change Directory
@@ -30,10 +31,11 @@ jobs:
3031
- name: Zip Sample Data
3132
run: make release-zip-sample-data
3233
- name: Publish Sample Data
33-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3435
with:
3536
name: sample-data
3637
path: sample-data.zip
38+
overwrite: true
3739
- name: Sync Labels
3840
env:
3941
GITHUB_ACCESS_TOKEN: ${{ secrets.LABEL_TOKEN }}

0 commit comments

Comments
 (0)