@@ -28,12 +28,12 @@ jobs:
28
28
# https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
29
29
30
30
publish-npm :
31
- runs-on : ubuntu-20 .04
31
+ runs-on : ubuntu-22 .04
32
32
steps :
33
33
- uses : actions/checkout@v3
34
34
- uses : actions/setup-node@v3
35
35
with :
36
- node-version : 14
36
+ node-version : " 16 "
37
37
registry-url : https://registry.npmjs.org/
38
38
- run : npm ci
39
39
- run : npm publish
@@ -42,19 +42,19 @@ jobs:
42
42
NODE_AUTH_TOKEN : ${{ secrets.npm_token }}
43
43
44
44
publish-docker :
45
- runs-on : ubuntu-20 .04
45
+ runs-on : ubuntu-22 .04
46
46
steps :
47
47
- uses : actions/checkout@v3
48
48
49
49
# Setup docker to build for multiple platforms, see:
50
- # https://github.com/docker/build-push-action/tree/v2.4.0 #usage
51
- # https://github.com/docker/build-push-action/blob/v2.4.0 /docs/advanced/multi-platform.md
50
+ # https://github.com/docker/build-push-action/tree/HEAD #usage
51
+ # https://github.com/docker/build-push-action/blob/HEAD /docs/advanced/multi-platform.md
52
52
53
53
- name : Set up QEMU (for docker buildx)
54
- uses : docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # associated tag: v1.0.2
54
+ uses : docker/setup-qemu-action@v2
55
55
56
56
- name : Set up Docker Buildx (for multi-arch builds)
57
- uses : docker/setup-buildx-action@95cb08cb2672c73d4ffd2f422e6d11953d2a9c70 # associated tag: v1.1.2
57
+ uses : docker/setup-buildx-action@v2
58
58
59
59
- name : Setup push rights to Docker Hub
60
60
# This was setup by...
89
89
run : echo "Docker tags ${{ steps.gettags.outputs.tags }}"
90
90
91
91
- name : Build and push
92
- uses : docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # associated tag: v2.4.0
92
+ uses : docker/build-push-action@v3
93
93
with :
94
94
platforms : linux/amd64,linux/arm64
95
95
push : ${{ startsWith(github.ref, 'refs/tags/') }}
0 commit comments