From b0d5d16f722b557b9c55d6a2e502e82f111e7608 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Mon, 18 Nov 2024 12:11:48 +0000 Subject: [PATCH 1/2] Update `upload-artifact` version. --- python/build_sdist/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/build_sdist/action.yml b/python/build_sdist/action.yml index 8468792..cb83320 100644 --- a/python/build_sdist/action.yml +++ b/python/build_sdist/action.yml @@ -24,7 +24,7 @@ runs: run: pipx run build --outdir dist/ ${{ inputs.package-path }} - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: dist/* if-no-files-found: error From 9a7a50ccb9a73368f2861b7bfea612f15912bb38 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Mon, 18 Nov 2024 12:22:32 +0000 Subject: [PATCH 2/2] Update `checkout` whilst we're at it. --- pre-commit/action.yml | 2 +- python/build_sdist/action.yml | 2 +- python/tox/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pre-commit/action.yml b/pre-commit/action.yml index b2162bf..1144952 100644 --- a/pre-commit/action.yml +++ b/pre-commit/action.yml @@ -5,7 +5,7 @@ description: 'Run linting using pre-commit' runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v3 with: diff --git a/python/build_sdist/action.yml b/python/build_sdist/action.yml index cb83320..f79aa8c 100644 --- a/python/build_sdist/action.yml +++ b/python/build_sdist/action.yml @@ -12,7 +12,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v3 diff --git a/python/tox/action.yml b/python/tox/action.yml index 0523f83..8403fea 100644 --- a/python/tox/action.yml +++ b/python/tox/action.yml @@ -10,7 +10,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ inputs.python-version }} uses: actions/setup-python@v3