Skip to content

Commit

Permalink
Bump GH action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill888 committed Feb 10, 2024
1 parent d4a8225 commit 163a49d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-binder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Binder Image
uses: jupyterhub/[email protected]
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
DKR: ${{ steps.dkr.outputs.IMAGE_SHA_NAME }}

- name: Publish environment.yaml artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: environment
path: /tmp/environment.yaml
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: wheels_cache
with:
path: ./wheels
key: wheels-${{ github.sha }}

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.10"

- name: Install Twine
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/cache@v3
- uses: actions/cache@v4
id: binder_cache
with:
path: /tmp/binder_env
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- build-binder-env

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Config
id: cfg
Expand All @@ -74,15 +74,15 @@ jobs:
echo "nb-hash=${nb_hash}" >> $GITHUB_OUTPUT
echo "nb-archive=odc-stac-notebooks-${nb_hash}.tar.gz" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
- uses: actions/cache@v4
id: nb_cache
with:
path: ${{ steps.cfg.outputs.nb-dir }}
key: docs-notebooks-${{ hashFiles('notebooks/*.py') }}

- name: Get Conda Environment from Cache
if: steps.nb_cache.outputs.cache-hit != 'true'
uses: actions/cache@v3
uses: actions/cache@v4
id: conda_cache
with:
path: /tmp/binder_env
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
tar tzf "${nb_archive}"
- name: Upload results (artifact)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rendered-notebooks
path: docs/notebooks
Expand Down

0 comments on commit 163a49d

Please sign in to comment.