Skip to content

Commit

Permalink
Upgrade GHA dependencies (#439)
Browse files Browse the repository at this point in the history
This fixes the following deprecation warning:

> Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20

Signed-off-by: Wouter Born <github@maindrain.net>
  • Loading branch information
wborn authored Feb 17, 2024
1 parent 2e23512 commit 3c52efd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: ${{ matrix.tag }}-${{ matrix.distribution }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
Expand All @@ -28,7 +28,7 @@ jobs:
config: ".github/hadolint.yml"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build images
run: ./build ${{ matrix.tag }} ${{ matrix.distribution }}
2 changes: 1 addition & 1 deletion .github/workflows/validate-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: validate
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate README.md
run: bash -c 'source helper-functions && validate_readme_constraints'

0 comments on commit 3c52efd

Please sign in to comment.