Skip to content

Commit f5d7322

Browse files
authored
Merge pull request #439 from consideRatio/pr/update-ci
ci: small updates to workflows, updating misc versions
2 parents 20f9327 + a716ce6 commit f5d7322

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/publish.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
# https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
2929

3030
publish-npm:
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-22.04
3232
steps:
3333
- uses: actions/checkout@v3
3434
- uses: actions/setup-node@v3
3535
with:
36-
node-version: 14
36+
node-version: "16"
3737
registry-url: https://registry.npmjs.org/
3838
- run: npm ci
3939
- run: npm publish
@@ -42,19 +42,19 @@ jobs:
4242
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
4343

4444
publish-docker:
45-
runs-on: ubuntu-20.04
45+
runs-on: ubuntu-22.04
4646
steps:
4747
- uses: actions/checkout@v3
4848

4949
# 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
5252

5353
- 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
5555

5656
- 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
5858

5959
- name: Setup push rights to Docker Hub
6060
# This was setup by...
@@ -89,7 +89,7 @@ jobs:
8989
run: echo "Docker tags ${{ steps.gettags.outputs.tags }}"
9090

9191
- name: Build and push
92-
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # associated tag: v2.4.0
92+
uses: docker/build-push-action@v3
9393
with:
9494
platforms: linux/amd64,linux/arm64
9595
push: ${{ startsWith(github.ref, 'refs/tags/') }}

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
2525
# Audit dependencies for known vulnerabilities
2626
audit-dependencies:
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-22.04
2828
steps:
2929
- uses: actions/checkout@v3
3030
- uses: actions/setup-node@v3
@@ -63,7 +63,8 @@ jobs:
6363
- "12"
6464
- "14"
6565
- "16"
66-
- "17"
66+
- "18"
67+
- "19"
6768

6869
steps:
6970
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)