Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Wandalen/wretry.action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.5
Choose a base ref
...
head repository: Wandalen/wretry.action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.6
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Mar 4, 2024

  1. Synchronize workflows with js_action branch, remove extra steps

    dmvict committed Mar 4, 2024
    Copy the full SHA
    c1a72e5 View commit details
  2. Merge pull request #135 from dmvict/workflows

    READY: Synchronize workflows with `js_action` branch, remove extra steps
    dmvict authored Mar 4, 2024
    Copy the full SHA
    be8b50a View commit details

Commits on Mar 6, 2024

  1. version 1.4.6

    dmvict committed Mar 6, 2024
    Copy the full SHA
    01e08af View commit details
Showing with 5 additions and 39 deletions.
  1. +1 −13 .github/workflows/JsActionPublish.yml
  2. +1 −11 .github/workflows/JsActionPullRequest.yml
  3. +1 −13 .github/workflows/JsActionPush.yml
  4. +1 −1 action.yml
  5. +1 −1 will.yml
14 changes: 1 addition & 13 deletions .github/workflows/JsActionPublish.yml
Original file line number Diff line number Diff line change
@@ -39,23 +39,11 @@ jobs :
- name : ${{ matrix.node-version }}
uses : Wandalen/wretry.action@master
with :
action : actions/setup-node@v2
action : actions/setup-node@v4
with : |
node-version : ${{ matrix.node-version }}
attempt_limit : 3
attempt_delay: 1000
- name : Save npm version
id : getnpmver
run : |
echo "npmver=$(npm -v)" >> $GITHUB_OUTPUT
- name : Update npm if current version is 6
if : "startsWith( steps.getnpmver.outputs.npmver, '6.' )"
run : npm install -g npm@latest-6
- name : Update node-gyp
if: ${{ matrix.os == 'windows-latest' && matrix.node-version != '18.x' }}
run : |
npm install --global node-gyp@9.0.0
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
- name : Install willbe
uses : Wandalen/wretry.action@master
with :
12 changes: 1 addition & 11 deletions .github/workflows/JsActionPullRequest.yml
Original file line number Diff line number Diff line change
@@ -35,21 +35,11 @@ jobs :
- name : ${{ matrix.node-version }}
uses : Wandalen/wretry.action@master
with :
action : actions/setup-node@v2
action : actions/setup-node@v4
with : |
node-version : ${{ matrix.node-version }}
attempt_limit : 3
attempt_delay: 1000
- name : Update npm
if : ${{ matrix.os == 'windows-latest' && matrix.node-version > '14.x' }}
run : |
npm install --global --production npm-windows-upgrade
npm-windows-upgrade --npm-version latest
- name : Update node-gyp
if: ${{ matrix.os == 'windows-latest' && matrix.node-version != '18.x' }}
run : |
npm install --global node-gyp@9.0.0
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
- name : Install willbe
uses : Wandalen/wretry.action@master
with :
14 changes: 1 addition & 13 deletions .github/workflows/JsActionPush.yml
Original file line number Diff line number Diff line change
@@ -38,23 +38,11 @@ jobs :
- name : ${{ matrix.node-version }}
uses : Wandalen/wretry.action@master
with :
action : actions/setup-node@v2
action : actions/setup-node@v4
with : |
node-version : ${{ matrix.node-version }}
attempt_limit : 3
attempt_delay: 1000
- name : Save npm version
id : getnpmver
run : |
echo "npmver=$(npm -v)" >> $GITHUB_OUTPUT
- name : Update npm if current version is 6
if : "startsWith( steps.getnpmver.outputs.npmver, '6.' )"
run : npm install -g npm@latest-6
- name : Update node-gyp
if: ${{ matrix.os == 'windows-latest' && matrix.node-version != '18.x' }}
run : |
npm install --global node-gyp@9.0.0
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
- name : Install willbe
uses : Wandalen/wretry.action@master
with :
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ runs:
steps:
- name: retry
id: retry
uses: Wandalen/wretry.action@v1.4.5_js_action
uses: Wandalen/wretry.action@v1.4.6_js_action
with:
action: '${{ inputs.action }}'
command: '${{ inputs.command }}'
2 changes: 1 addition & 1 deletion will.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
about:
name: wretry.action
version: 1.4.5
version: 1.4.6
description: Retries an Github Action step on failure
enabled: 0
author: Kostiantyn Wandalen <wandalen@obox.systems>