Skip to content

Commit 5803569

Browse files
authored
Merge pull request #587 from IIIF/fix_build
Updating build libraries
2 parents 7287024 + 618d2fc commit 5803569

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/live.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3131

3232
- name: Setup ruby
3333
uses: ruby/setup-ruby@v1
@@ -50,14 +50,14 @@ jobs:
5050

5151
# Validate
5252
- name: Set up Python 3.x
53-
uses: actions/setup-python@v2
53+
uses: actions/setup-python@v5
5454
with:
5555
# Semantic version range syntax or exact version of a Python version
5656
python-version: '3.x'
5757
# Optional - x64 or x86 architecture, defaults to x64
5858
architecture: 'x64'
5959
- name: Cache pip
60-
uses: actions/cache@v2
60+
uses: actions/cache@v4
6161
with:
6262
# This path is specific to Ubuntu
6363
path: ~/.cache/pip

.github/workflows/preview.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# Steps represent a sequence of tasks that will be executed as part of the job
2626
steps:
2727
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2929
# store branch name in ${BRANCH_NAME}
3030
- name: Export BRANCH_NAME # store branch name in $BRANCH_NAME
3131
run: echo BRANCH_NAME=`git rev-parse --abbrev-ref HEAD` >> $GITHUB_ENV
@@ -48,14 +48,14 @@ jobs:
4848

4949
# Validate
5050
- name: Set up Python 3.x
51-
uses: actions/setup-python@v2
51+
uses: actions/setup-python@v5
5252
with:
5353
# Semantic version range syntax or exact version of a Python version
5454
python-version: '3.x'
5555
# Optional - x64 or x86 architecture, defaults to x64
5656
architecture: 'x64'
5757
- name: Cache pip
58-
uses: actions/cache@v2
58+
uses: actions/cache@v4
5959
with:
6060
# This path is specific to Ubuntu
6161
path: ~/.cache/pip

0 commit comments

Comments
 (0)