From 585ce0dde7fda2a82f7ef9054fbb95d2eb21a610 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Mon, 5 Feb 2024 16:14:39 -0800 Subject: [PATCH 1/3] setup-nextstrain-cli: Upgrade to v5 of actions/setup-python Squashes Node 16 vs. 20 warnings. --- actions/setup-nextstrain-cli/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/setup-nextstrain-cli/action.yaml b/actions/setup-nextstrain-cli/action.yaml index 76736c6..1e97ee0 100644 --- a/actions/setup-nextstrain-cli/action.yaml +++ b/actions/setup-nextstrain-cli/action.yaml @@ -45,7 +45,7 @@ inputs: runs: using: composite steps: - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 with: python-version: "${{ inputs.python-version }}" From 3aaf7cc73dd829334e571dbd634698fe603c7750 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Mon, 5 Feb 2024 16:15:13 -0800 Subject: [PATCH 2/3] workflow-context: Upgrade to v7 of actions/github-script Squashes Node 16 vs. 20 warnings. --- actions/workflow-context/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/workflow-context/action.yaml b/actions/workflow-context/action.yaml index d9351ee..1d6ef53 100644 --- a/actions/workflow-context/action.yaml +++ b/actions/workflow-context/action.yaml @@ -38,7 +38,7 @@ runs: using: composite steps: - id: context - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | let idToken = await core.getIDToken(); From e479c2c9d0fc6654d11b7c762aa9e05fd79e83d9 Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Mon, 5 Feb 2024 16:19:38 -0800 Subject: [PATCH 3/3] pathogen-repo-ci: Update setup-nextstrain-cli To avail ourselves of fewer warnings thanks to "setup-nextstrain-cli: Upgrade to v5 of actions/setup-python" (585ce0d). --- .github/workflows/pathogen-repo-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pathogen-repo-ci.yaml b/.github/workflows/pathogen-repo-ci.yaml index 1e5166a..cca6860 100644 --- a/.github/workflows/pathogen-repo-ci.yaml +++ b/.github/workflows/pathogen-repo-ci.yaml @@ -221,7 +221,7 @@ jobs: # future changes to setup-nextstrain-cli. # # -trs, 28 April 2022 - - uses: nextstrain/.github/actions/setup-nextstrain-cli@0e74eb59bbdecc80de08d04b26b7b0242890b582 + - uses: nextstrain/.github/actions/setup-nextstrain-cli@585ce0dde7fda2a82f7ef9054fbb95d2eb21a610 with: runtime: ${{ matrix.runtime }} # Consider parameterizing the Python version. -trs, 1 April 2022