Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/image-devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,33 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: '22'
node-version-file: .nvmrc
- name: Install and Build
run: |
npm install
npm run build
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4.0.0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4.0.0
with:
install: true
- name: Builder instance name
run: echo ${{ steps.buildx.outputs.name }}
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: tag and push devel image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7.0.0
with:
context: .
file: Dockerfile.devel
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Clean up dangling images
run: docker image prune -f -a
- name: tag and push devel nginx image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7.0.0
with:
context: .
file: Dockerfile.nginx
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/image-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: '22'
node-version-file: .nvmrc
- name: Install and Build
run: |
npm install
npm run build
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4.0.0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4.0.0
with:
install: true
- name: Builder instance name
run: echo ${{ steps.buildx.outputs.name }}
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -44,7 +44,7 @@ jobs:
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: tag and push release image
if: github.event_name == 'release'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7.0.0
with:
context: .
file: Dockerfile
Expand All @@ -55,7 +55,7 @@ jobs:
run: docker image prune -f -a
- name: tag and push release nginx image
if: github.event_name == 'release'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7.0.0
with:
context: .
file: Dockerfile.nginx
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: "22"
node-version-file: .nvmrc
- name: Install and Build
run: |
npm install
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: "22"
node-version-file: .nvmrc
cache: 'npm'
- name: Install
run: npm ci
- name: ESLint
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
Comment thread
mahula marked this conversation as resolved.