From c4a6655e84e2b28ad777cadea3db4ce7d7b0272c Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Mon, 19 Aug 2024 21:03:48 -0400 Subject: [PATCH 1/2] build: upgrade action versions for latest Node --- nbdev-ci/action.yml | 2 +- quarto-ghp/action.yml | 2 +- quarto-rsync/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nbdev-ci/action.yml b/nbdev-ci/action.yml index 0b13049..ec9f699 100644 --- a/nbdev-ci/action.yml +++ b/nbdev-ci/action.yml @@ -29,7 +29,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: ${{ inputs.skip_checkout != 'true' }} - uses: actions/setup-python@v4 with: diff --git a/quarto-ghp/action.yml b/quarto-ghp/action.yml index 2377f19..c57c23d 100644 --- a/quarto-ghp/action.yml +++ b/quarto-ghp/action.yml @@ -25,7 +25,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: ${{ inputs.version }} diff --git a/quarto-rsync/action.yml b/quarto-rsync/action.yml index 5b73745..92df2e4 100644 --- a/quarto-rsync/action.yml +++ b/quarto-rsync/action.yml @@ -29,7 +29,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 - name: Install deps, build docs, and sync env: From aac2d7a52d4da3c87b13a6fee75d52e66a08daa4 Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Mon, 19 Aug 2024 21:05:33 -0400 Subject: [PATCH 2/2] build: upgrade setup-python action for latest Node --- .github/workflows/test_open_issue.yaml | 6 +++--- nbdev-ci/action.yml | 2 +- open_issue/README.md | 12 ++++++------ quarto-ghp/action.yml | 2 +- quarto-rsync/action.yml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test_open_issue.yaml b/.github/workflows/test_open_issue.yaml index e57db2b..c1a6168 100644 --- a/.github/workflows/test_open_issue.yaml +++ b/.github/workflows/test_open_issue.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest name: test-open-issue steps: - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - uses: fastai/workflows/open_issue@master id: open_issue with: @@ -20,6 +20,6 @@ jobs: skip_if_exists_flag: ${{ matrix.skip }} - name: check outputs run: | - echo bool_new_issue_created ${{ steps.open_issue.outputs.bool_new_issue_created }} + echo bool_new_issue_created ${{ steps.open_issue.outputs.bool_new_issue_created }} echo related_issue_num ${{ steps.open_issue.outputs.related_issue_num }} - echo related_issue_url ${{ steps.open_issue.outputs.related_issue_url }} + echo related_issue_url ${{ steps.open_issue.outputs.related_issue_url }} diff --git a/nbdev-ci/action.yml b/nbdev-ci/action.yml index ec9f699..7beff1c 100644 --- a/nbdev-ci/action.yml +++ b/nbdev-ci/action.yml @@ -31,7 +31,7 @@ runs: steps: - uses: actions/checkout@v4 if: ${{ inputs.skip_checkout != 'true' }} - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ inputs.version }} cache: "pip" diff --git a/open_issue/README.md b/open_issue/README.md index efebf32..e6a4446 100644 --- a/open_issue/README.md +++ b/open_issue/README.md @@ -23,11 +23,11 @@ inputs: description: 'Setting this to any value will result in not an opening a new issue if there is an existing issue with the same title.' required: false outputs: - bool_new_issue_created: + bool_new_issue_created: description: "Returns 'True' or 'False' depending on if new issue was created. Can only be 'False' if input skip_if_exists_flag is specified." - related_issue_num: + related_issue_num: description: "Returns issue number of issue that was created. If a new issue is not created because of the skip_if_exists_flag, the issue number of corresponding existing issue is returned." - related_issue_url: + related_issue_url: description: "Same as related_issue_num except returns the URL for the issue instead of the issue number." ``` @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest name: test-open-issue steps: - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - uses: fastai/workflows/open_issue@master id: open_issue with: @@ -56,7 +56,7 @@ jobs: skip_if_exists_flag: "Yes" # omit this input completely if you do not want to trigger this flag - name: see outputs run: | - echo bool_new_issue_created ${{ steps.open_issue.outputs.bool_new_issue_created }} + echo bool_new_issue_created ${{ steps.open_issue.outputs.bool_new_issue_created }} echo related_issue_num ${{ steps.open_issue.outputs.related_issue_num }} - echo related_issue_url ${{ steps.open_issue.outputs.related_issue_url }} + echo related_issue_url ${{ steps.open_issue.outputs.related_issue_url }} ``` diff --git a/quarto-ghp/action.yml b/quarto-ghp/action.yml index c57c23d..da626c3 100644 --- a/quarto-ghp/action.yml +++ b/quarto-ghp/action.yml @@ -26,7 +26,7 @@ runs: using: "composite" steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ inputs.version }} cache: "pip" diff --git a/quarto-rsync/action.yml b/quarto-rsync/action.yml index 92df2e4..3119643 100644 --- a/quarto-rsync/action.yml +++ b/quarto-rsync/action.yml @@ -30,7 +30,7 @@ runs: using: "composite" steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - name: Install deps, build docs, and sync env: SSH_KEY: ${{ inputs.ssh_key }}