diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8c6d8fb..4786fe7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/README.md b/README.md index 008f4a4..b4d9a8e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ converge: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -71,7 +71,7 @@ Make sure to use `fetch-depth: 0` setting in the checkout action, like follows: ```yaml - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ``` diff --git a/action.yml b/action.yml index b99061a..e1a8270 100644 --- a/action.yml +++ b/action.yml @@ -23,5 +23,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'converge/index.js' diff --git a/build/README.md b/build/README.md index 9ddf77f..089b5ae 100644 --- a/build/README.md +++ b/build/README.md @@ -33,7 +33,7 @@ build: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/build/action.yml b/build/action.yml index 6f30748..fb33b4e 100644 --- a/build/action.yml +++ b/build/action.yml @@ -20,5 +20,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/cleanup/README.md b/cleanup/README.md index ed1a121..cc1cbd5 100644 --- a/cleanup/README.md +++ b/cleanup/README.md @@ -33,7 +33,7 @@ cleanup: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch all history for all tags and branches run: git fetch --prune --unshallow diff --git a/cleanup/action.yml b/cleanup/action.yml index bfa89fd..6f9a19d 100644 --- a/cleanup/action.yml +++ b/cleanup/action.yml @@ -20,5 +20,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/converge/README.md b/converge/README.md index 4c986f9..9e32335 100644 --- a/converge/README.md +++ b/converge/README.md @@ -36,7 +36,7 @@ converge: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/converge/action.yml b/converge/action.yml index 0ec6fea..846ba0d 100644 --- a/converge/action.yml +++ b/converge/action.yml @@ -23,5 +23,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/dismiss/README.md b/dismiss/README.md index 0714f7e..8c5a1e7 100644 --- a/dismiss/README.md +++ b/dismiss/README.md @@ -36,7 +36,7 @@ dismiss: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Dismiss uses: werf/actions/dismiss@v1.2 diff --git a/dismiss/action.yml b/dismiss/action.yml index 2bfd38a..6552922 100644 --- a/dismiss/action.yml +++ b/dismiss/action.yml @@ -23,5 +23,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/install/README.md b/install/README.md index 5eb6506..83d2350 100644 --- a/install/README.md +++ b/install/README.md @@ -43,7 +43,7 @@ werf: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install werf CLI uses: werf/actions/install@v1.2 diff --git a/install/action.yml b/install/action.yml index 6698bdb..5e781b4 100644 --- a/install/action.yml +++ b/install/action.yml @@ -17,5 +17,5 @@ inputs: default: '0' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js' diff --git a/run/README.md b/run/README.md index 10f45e4..2efb489 100644 --- a/run/README.md +++ b/run/README.md @@ -40,7 +40,7 @@ run: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/run/action.yml b/run/action.yml index 9ebe937..afe5242 100644 --- a/run/action.yml +++ b/run/action.yml @@ -26,5 +26,5 @@ inputs: description: 'Base64 encoded kubeconfig data used for deployment, cleanup and distributed locks' required: false runs: - using: 'node16' + using: 'node20' main: 'index.js'