From 2f1ab7891be0ee35088880b4eb9db096b651680e Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed, 4 Sep 2024 10:43:29 -0400
Subject: [PATCH] chore(deps): update github actions (major) (#24)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/setup-python](https://redirect.github.com/actions/setup-python)
| action | major | `v4` -> `v5` |
|
[actions/upload-artifact](https://redirect.github.com/actions/upload-artifact)
| action | major | `v3` -> `v4` |
|
[codecov/codecov-action](https://redirect.github.com/codecov/codecov-action)
| action | major | `v3` -> `v4` |
|
[release-drafter/release-drafter](https://redirect.github.com/release-drafter/release-drafter)
| action | major | `v5.25.0` -> `v6.0.0` |
|
[softprops/action-gh-release](https://redirect.github.com/softprops/action-gh-release)
| action | major | `v1` -> `v2` |
---
### Release Notes
actions/setup-python (actions/setup-python)
###
[`v5`](https://redirect.github.com/actions/setup-python/compare/v4...v5)
[Compare
Source](https://redirect.github.com/actions/setup-python/compare/v4...v5)
actions/upload-artifact (actions/upload-artifact)
###
[`v4`](https://redirect.github.com/actions/upload-artifact/compare/v3...v4)
[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v3...v4)
codecov/codecov-action (codecov/codecov-action)
###
[`v4`](https://redirect.github.com/codecov/codecov-action/compare/v3...v4)
[Compare
Source](https://redirect.github.com/codecov/codecov-action/compare/v3...v4)
release-drafter/release-drafter
(release-drafter/release-drafter)
###
[`v6.0.0`](https://redirect.github.com/release-drafter/release-drafter/releases/tag/v6.0.0)
[Compare
Source](https://redirect.github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0)
### What's Changed
- Update Node.js to 20
([#1379](https://redirect.github.com/release-drafter/release-drafter/issues/1379))
[@massongit](https://redirect.github.com/massongit)
**Full Changelog**:
https://github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0
softprops/action-gh-release
(softprops/action-gh-release)
###
[`v2`](https://redirect.github.com/softprops/action-gh-release/compare/v1...v2)
[Compare
Source](https://redirect.github.com/softprops/action-gh-release/compare/v1...v2)
---
### Configuration
📅 **Schedule**: Branch creation - "every weekend" in timezone Etc/UTC,
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
â™» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/canonical/craftcraft).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
.github/workflows/docs.yaml | 4 ++--
.github/workflows/release-drafter.yaml | 2 +-
.github/workflows/release-publish.yaml | 6 +++---
.github/workflows/tests.yaml | 12 ++++++------
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index 8090655..c2b688c 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -21,7 +21,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Tox
@@ -31,7 +31,7 @@ jobs:
- name: Build documentation
run: tox run --colored yes -e build-docs
- name: Upload documentation
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: docs
path: docs/_build/
diff --git a/.github/workflows/release-drafter.yaml b/.github/workflows/release-drafter.yaml
index 3ae8faa..4c6db3e 100644
--- a/.github/workflows/release-drafter.yaml
+++ b/.github/workflows/release-drafter.yaml
@@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Release Drafter
- uses: release-drafter/release-drafter@v5.25.0
+ uses: release-drafter/release-drafter@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/release-publish.yaml b/.github/workflows/release-publish.yaml
index 08ed1e8..e4d2dab 100644
--- a/.github/workflows/release-publish.yaml
+++ b/.github/workflows/release-publish.yaml
@@ -20,7 +20,7 @@ jobs:
git fetch --force --tags --depth 1
git describe --dirty --long --match '[0-9]*.[0-9]*.[0-9]*' --exclude '*[^0-9.]*'
- name: Setup Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: "3.11"
check-latest: true
@@ -30,7 +30,7 @@ jobs:
python3 -m build
twine check dist/*
- name: Upload pypi packages artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: pypi-packages
path: dist/
@@ -54,7 +54,7 @@ jobs:
- name: Get pypi artifacts
uses: actions/download-artifact@v4.1.7
- name: Release
- uses: softprops/action-gh-release@v1
+ uses: softprops/action-gh-release@v2
with:
files: |
**
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 719fa05..d90d729 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -20,7 +20,7 @@ jobs:
- name: conventional commits
uses: webiny/action-conventional-commits@v1.3.0
- name: Setup Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
@@ -52,7 +52,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: |
3.8
@@ -73,13 +73,13 @@ jobs:
env:
PYTEST_ADDOPTS: "--no-header -vv -rN"
- name: Upload code coverage
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
with:
directory: ./results/
files: coverage*.xml
- name: Upload test results
if: success() || failure()
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.platform }}
path: results/
@@ -93,7 +93,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: |
3.8
@@ -115,7 +115,7 @@ jobs:
PYTEST_ADDOPTS: "--no-header -vv -rN"
- name: Upload test results
if: success() || failure()
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.platform }}
path: results/