Skip to content

Commit e18fbf2

Browse files
committed
update actions
to the most recent versions I could find
1 parent 9eb8e7e commit e18fbf2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@v1
17+
uses: docker/setup-buildx-action@v3
1818

1919
- name: Cache Docker layers
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: /tmp/.buildx-cache
2323
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -27,7 +27,7 @@ jobs:
2727
# This build and push step does the same thing as `make docker-build`, but
2828
# makes it easier to store and load caches, which is why we use it instead
2929
- name: Build and Save Layers Locally
30-
uses: docker/build-push-action@v2
30+
uses: docker/build-push-action@v5
3131
with:
3232
context: ./
3333
file: ./Dockerfile

.github/workflows/nbval.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313

1414
- name: Set up Docker Buildx
15-
uses: docker/setup-buildx-action@v1
15+
uses: docker/setup-buildx-action@v3
1616

1717
- name: Cache Docker layers
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: /tmp/.buildx-cache
2121
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -25,7 +25,7 @@ jobs:
2525
# This build and push step does the same thing as `make docker-build`, but
2626
# makes it easier to store and load caches, which is why we use it instead
2727
- name: Build and Save Layers Locally
28-
uses: docker/build-push-action@v2
28+
uses: docker/build-push-action@v5
2929
with:
3030
context: ./
3131
file: ./Dockerfile

.github/workflows/stage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313

1414
- name: Set up Docker Buildx
15-
uses: docker/setup-buildx-action@v1
15+
uses: docker/setup-buildx-action@v3
1616

1717
- name: Cache Docker layers
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: /tmp/.buildx-cache
2121
key: ${{ runner.os }}-buildx-${{ hashFiles('poetry.lock') }}
@@ -25,7 +25,7 @@ jobs:
2525
# This build and push step does the same thing as `make docker-build`, but
2626
# makes it easier to store and load caches, which is why we use it instead
2727
- name: Build and Save Layers Locally
28-
uses: docker/build-push-action@v2
28+
uses: docker/build-push-action@v5
2929
with:
3030
context: ./
3131
file: ./Dockerfile

0 commit comments

Comments
 (0)