Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ updates:
commit-message:
prefix: "ci"
include: "scope"
cooldown:
default-days: 7
- package-ecosystem: "pre-commit"
directory: "/"
schedule:
Expand All @@ -24,4 +26,6 @@ updates:
commit-message:
prefix: "chore"
include: "scope"
cooldown:
default-days: 7

5 changes: 4 additions & 1 deletion .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
env:
IMAGE_NAME: node-minimal

permissions:
contents: read

jobs:
build:
strategy:
Expand Down Expand Up @@ -76,4 +79,4 @@ jobs:
tags: ${{ env.IMAGE_NAME }}-${{ env.LATEST_VERSION }}

- name: Test Image
run: docker run --rm ${{ env.IMAGE_NAME }}-${{ env.LATEST_VERSION }} -e "console.log('Hello from Node.js ' + process.version)"
run: docker run --rm "${IMAGE_NAME}-${LATEST_VERSION}" -e "console.log('Hello from Node.js ' + process.version)"
3 changes: 3 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Linting
on:
pull_request:

permissions:
contents: read

jobs:
shfmt:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update-current-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
env:
IMAGE_NAME: node-minimal

permissions:
contents: read

jobs:
check_version:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -130,7 +133,7 @@ jobs:
tags: ${{ env.IMAGE_NAME }}-${{ needs.check_version.outputs.NODE_VERSION }}

- name: Test Image
run: docker run --rm ${{ env.IMAGE_NAME }}-${{ needs.check_version.outputs.NODE_VERSION }} -e "console.log('Hello from Node.js ' + process.version)"
run: docker run --rm "${IMAGE_NAME}-${NODE_VERSION}" -e "console.log('Hello from Node.js ' + process.version)"

- name: Docker meta
id: meta
Expand Down