forked from tektronix/tm_devices
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub action versions used in workflows (tektronix#120)
* gh-actions(deps): Bump the gh-actions-dependencies group with 6 updates Bumps the gh-actions-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `2` | `3` | | [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) | `2.28.0` | `3.0.0` | | [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `1.5.4` | `2.0.0` | | [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release) | `8.5.0` | `8.5.1` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) Updates `dawidd6/action-download-artifact` from 2.28.0 to 3.0.0 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v2.28.0...v3.0.0) Updates `hynek/build-and-inspect-python-package` from 1.5.4 to 2.0.0 - [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases) - [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md) - [Commits](hynek/build-and-inspect-python-package@v1.5.4...v2.0.0) Updates `python-semantic-release/python-semantic-release` from 8.5.0 to 8.5.1 - [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases) - [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md) - [Commits](python-semantic-release/python-semantic-release@v8.5.0...v8.5.1) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions-dependencies - dependency-name: dawidd6/action-download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions-dependencies - dependency-name: hynek/build-and-inspect-python-package dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions-dependencies - dependency-name: python-semantic-release/python-semantic-release dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * ci: Test removing the files that store the previous changelog and release notes from git tracking. * docs: Update changelog with information on the version bump for python-semantic-release. * docs: Reverted some changes made during testing of workflow updates. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <[email protected]> Signed-off-by: qthompso <[email protected]>
- Loading branch information
Showing
13 changed files
with
21 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,10 +48,9 @@ jobs: | |
- name: Check for unreleased entries in the Changelog and copy files to templates | ||
run: | | ||
python scripts/check_unreleased_changelog_items.py | ||
git add python_semantic_release_templates | ||
git config --global tag.gpgSign true | ||
- name: Python Semantic Release | ||
uses: python-semantic-release/[email protected].0 | ||
uses: python-semantic-release/[email protected].1 | ||
id: release | ||
with: | ||
force: ${{ inputs.release_level }} | ||
|
@@ -74,7 +73,7 @@ jobs: | |
ref: main # Make sure to check out the latest commit on main, not the original commit that triggered the workflow | ||
fetch-depth: 0 | ||
- name: Build package | ||
uses: hynek/build-and-inspect-python-package@v1.5.4 | ||
uses: hynek/build-and-inspect-python-package@v2.0.0 | ||
upload-testpypi: | ||
name: Upload package to TestPyPI | ||
needs: [pypi-build] | ||
|
@@ -85,7 +84,7 @@ jobs: | |
id-token: write | ||
steps: | ||
- name: Download built packages | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Packages | ||
path: dist | ||
|
@@ -103,7 +102,7 @@ jobs: | |
id-token: write | ||
steps: | ||
- name: Download built packages | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Packages | ||
path: dist | ||
|
@@ -123,7 +122,7 @@ jobs: | |
ref: main # Make sure to check out the latest commit on main, not the original commit that triggered the workflow | ||
fetch-depth: 0 | ||
- name: Download built packages | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Packages | ||
path: dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.