Skip to content

Commit c1ca04a

Browse files
Merge pull request #1821 from tulibraries/DEVO-1352-upgrade-git-hub-actions-to-use-modern-node
DEVO-1352-upgrade-git-hub-actions-to-use-modern-node
2 parents c806fc6 + 3692ba5 commit c1ca04a

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/lint-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
python-version: [ 3.12 ]
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
submodules: recursive
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
cache: "pipenv"
3333

3434
- name: Install pipenv
35-
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
35+
run: python -m pip install pipenv
3636

3737
- name: Install dependencies
3838
run: pipenv install --dev

.github/workflows/prod-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ jobs:
2626
python-version: [ 3.12 ]
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Setup Python
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535
cache: "pipenv"
3636

3737
- name: Install pipenv
38-
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
38+
run: python -m pip install pipenv
3939

4040
- name: Install dependencies
4141
run: pipenv install --dev
4242

4343
- name: Checkout ansible-playbook-airflow (private)
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545
with:
4646
repository: tulibraries/ansible-playbook-airflow
4747
token: ${{ secrets.MY_PAT }}
@@ -57,7 +57,7 @@ jobs:
5757
chmod 600 "$HOME/.vault"
5858
5959
- name: Start ssh-agent and add key
60-
uses: webfactory/ssh-agent@v0.9.1
60+
uses: webfactory/ssh-agent@v0.10.0
6161
with:
6262
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }}
6363

.github/workflows/qa-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ jobs:
2121
python-version: [ 3.12 ]
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: Setup Python
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
cache: "pipenv"
3131

3232
- name: Install pipenv
33-
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
33+
run: python -m pip install pipenv
3434

3535
- name: Install dependencies
3636
run: pipenv install --dev
3737

3838
- name: Checkout ansible-playbook-airflow (private)
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040
with:
4141
repository: tulibraries/ansible-playbook-airflow
4242
token: ${{ secrets.MY_PAT }}
@@ -52,7 +52,7 @@ jobs:
5252
chmod 600 "$HOME/.vault"
5353
5454
- name: Start ssh-agent and add key
55-
uses: webfactory/ssh-agent@v0.9.1
55+
uses: webfactory/ssh-agent@v0.10.0
5656
with:
5757
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }}
5858

0 commit comments

Comments
 (0)