Browse Source
ci: fix Node.js 20 deprecation warning in Actions
pull/2552/head
Platon47
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
0 deletions
-
.github/workflows/docker-publish.yml
|
|
@ -16,6 +16,8 @@ jobs: |
|
|
steps: |
|
|
steps: |
|
|
- name: Checkout |
|
|
- name: Checkout |
|
|
uses: actions/checkout@v4 |
|
|
uses: actions/checkout@v4 |
|
|
|
|
|
with: |
|
|
|
|
|
persist-credentials: false |
|
|
|
|
|
|
|
|
- name: Docker meta |
|
|
- name: Docker meta |
|
|
id: meta |
|
|
id: meta |
|
|
@ -61,3 +63,6 @@ jobs: |
|
|
labels: ${{ steps.meta.outputs.labels }} |
|
|
labels: ${{ steps.meta.outputs.labels }} |
|
|
cache-from: type=gha |
|
|
cache-from: type=gha |
|
|
cache-to: type=gha,mode=max |
|
|
cache-to: type=gha,mode=max |
|
|
|
|
|
|
|
|
|
|
|
env: |
|
|
|
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true |
|
|
|