Skip to content

Commit cdec6bd

Browse files
authored
Revert "Update GitHub Actions to the latest versions (#356)"
This reverts commit 9bdef0d.
1 parent 9bdef0d commit cdec6bd

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/pull_request.yml

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

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v2
1818
- name: Set up Python ${{ env.PYTHON_VERSION }}
19-
uses: actions/setup-python@v6
19+
uses: actions/setup-python@v1
2020
with:
2121
python-version: ${{ env.PYTHON_VERSION }}
22-
cache: 'pipenv'
2322
- name: Install pipenv
2423
run: pip install pipenv
2524
- name: Change Directory
@@ -31,11 +30,10 @@ jobs:
3130
- name: Zip Sample Data
3231
run: make release-zip-sample-data
3332
- name: Publish Sample Data
34-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v2
3534
with:
3635
name: sample-data
3736
path: sample-data.zip
38-
overwrite: true
3937
- name: Sync Labels
4038
env:
4139
GITHUB_ACCESS_TOKEN: ${{ secrets.LABEL_TOKEN }}

0 commit comments

Comments
 (0)