Skip to content

Commit 8f24e9e

Browse files
committed
update actions
1 parent 0452693 commit 8f24e9e

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/release.yml

+19-19
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ env:
1212
jobs:
1313
tag:
1414
name: tag
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Tag Release
1919
uses: "marvinpinto/[email protected]"
2020
with:
@@ -24,13 +24,13 @@ jobs:
2424
# This builds a base postgres image that has everything installed to be able to run pgstac.
2525
buildpg:
2626
name: Build and push base postgres image
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-22.04
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- uses: docker/setup-qemu-action@v3
31-
- uses: docker/setup-buildx-action@v2
31+
- uses: docker/setup-buildx-action@v3
3232
- name: Log in to the Container registry
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@v3
3434
with:
3535
registry: ${{ env.REGISTRY }}
3636
username: ${{ github.actor }}
@@ -57,13 +57,13 @@ jobs:
5757
# This builds a postgres image that already has pgstac installed to the tagged version
5858
buildpgstac:
5959
name: Build and push base postgres with pgstac installed
60-
runs-on: ubuntu-latest
60+
runs-on: ubuntu-22.04
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
- uses: docker/setup-qemu-action@v3
64-
- uses: docker/setup-buildx-action@v2
64+
- uses: docker/setup-buildx-action@v3
6565
- name: Log in to the Container registry
66-
uses: docker/login-action@v2
66+
uses: docker/login-action@v3
6767
with:
6868
registry: ${{ env.REGISTRY }}
6969
username: ${{ github.actor }}
@@ -89,13 +89,13 @@ jobs:
8989

9090
buildpyrust:
9191
name: Build and push base pyrust
92-
runs-on: ubuntu-latest
92+
runs-on: ubuntu-22.04
9393
steps:
94-
- uses: actions/checkout@v3
94+
- uses: actions/checkout@v4
9595
- uses: docker/setup-qemu-action@v3
96-
- uses: docker/setup-buildx-action@v2
96+
- uses: docker/setup-buildx-action@v3
9797
- name: Log in to the Container registry
98-
uses: docker/login-action@v2
98+
uses: docker/login-action@v3
9999
with:
100100
registry: ${{ env.REGISTRY }}
101101
username: ${{ github.actor }}
@@ -121,13 +121,13 @@ jobs:
121121

122122
buildpypgstac:
123123
name: Build and push base pyrust
124-
runs-on: ubuntu-latest
124+
runs-on: ubuntu-22.04
125125
steps:
126-
- uses: actions/checkout@v3
126+
- uses: actions/checkout@v4
127127
- uses: docker/setup-qemu-action@v3
128-
- uses: docker/setup-buildx-action@v2
128+
- uses: docker/setup-buildx-action@v3
129129
- name: Log in to the Container registry
130-
uses: docker/login-action@v2
130+
uses: docker/login-action@v3
131131
with:
132132
registry: ${{ env.REGISTRY }}
133133
username: ${{ github.actor }}
@@ -153,7 +153,7 @@ jobs:
153153

154154
releasetopypi:
155155
name: Release
156-
runs-on: ubuntu-latest
156+
runs-on: ubuntu-22.04
157157
permissions:
158158
id-token: write
159159
environment:

0 commit comments

Comments
 (0)