From a6c60447f9b9efce943392218a4856fc6c2789a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Warnier?= Date: Thu, 2 Apr 2026 17:12:53 +0200 Subject: [PATCH 1/2] Fix GHA deprecation warning about actions still running on Node.js 20 --- .github/actions/docker-opensips-publish/action.yml | 4 ++-- .github/workflows/docker-readme.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/docker-opensips-publish/action.yml b/.github/actions/docker-opensips-publish/action.yml index bd15fc2..f3ae63c 100644 --- a/.github/actions/docker-opensips-publish/action.yml +++ b/.github/actions/docker-opensips-publish/action.yml @@ -31,7 +31,7 @@ runs: using: "composite" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: repository: OpenSIPS/docker-opensips @@ -51,7 +51,7 @@ runs: run: make build 2>&1 | tee /tmp/build.log && grep "naming to docker.io" /tmp/build.log | awk -F'[ /]' '{print "DOCKER_TAG=" $5 "/" $6 }' >> $GITHUB_OUTPUT - name: Log in to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ inputs.docker-username }} password: ${{ inputs.docker-token }} diff --git a/.github/workflows/docker-readme.yml b/.github/workflows/docker-readme.yml index 0926a99..1344f63 100644 --- a/.github/workflows/docker-readme.yml +++ b/.github/workflows/docker-readme.yml @@ -12,7 +12,7 @@ jobs: dockerHubDescription: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Docker Hub Description From 5f6c2d2e18c922f71d73434db7053f113c81cc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Warnier?= Date: Thu, 2 Apr 2026 17:16:37 +0200 Subject: [PATCH 2/2] Improve descriptions --- .github/actions/docker-opensips-publish/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/docker-opensips-publish/action.yml b/.github/actions/docker-opensips-publish/action.yml index f3ae63c..f88df69 100644 --- a/.github/actions/docker-opensips-publish/action.yml +++ b/.github/actions/docker-opensips-publish/action.yml @@ -15,16 +15,16 @@ inputs: description: Indicates whether to install OpenSIPS CLI as well required: false modules: - description: Space separated additional packets to install + description: Space-separated additional packages to install required: false build: - description: Indicate the build to use + description: Indicates the build to use required: false docker-username: - description: The Docker username to push the image with + description: The Docker username to push the image as required: true docker-token: - description: The Docker token used to authenticate + description: The Docker authentication token used required: true runs: