Skip to content

Commit 5c8d034

Browse files
ci: bump the github-actions group across 1 directory with 3 updates (#82)
* ci: bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action), [python-semantic-release/upload-to-gh-release](https://github.com/python-semantic-release/upload-to-gh-release) and [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package). Updates `github/codeql-action` from 3.25.5 to 3.25.6 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b7cec75...9fdb3e4) Updates `python-semantic-release/upload-to-gh-release` from 9.0.2 to 9.7.3 - [Release notes](https://github.com/python-semantic-release/upload-to-gh-release/releases) - [Changelog](https://github.com/python-semantic-release/upload-to-gh-release/blob/main/releaserc.toml) - [Commits](python-semantic-release/upload-to-gh-release@8d1fb62...20f89b4) Updates `hynek/build-and-inspect-python-package` from 2.5.0 to 2.6.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@4aea7de...b4fc3f6) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: python-semantic-release/upload-to-gh-release dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: hynek/build-and-inspect-python-package dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * ci: remove baipp workaround --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Heinz-Alexander Fuetterer <fuetterh@posteo.de>
1 parent 6a41547 commit 5c8d034

5 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2222
# Ref: https://github.com/github/codeql-action
2323
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
24+
uses: github/codeql-action/init@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6
2525
with:
2626
languages: python
2727
- name: Perform CodeQL Analysis
28-
uses: github/codeql-action/analyze@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
28+
uses: github/codeql-action/analyze@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# allows for python-semantic-release to push to protected main branch
3838
github_token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
3939
- name: Publish package to GitHub Release
40-
uses: python-semantic-release/upload-to-gh-release@8d1fb62d5d44028f46cae2fd8d22f5dec08a354b # v9.0.2
40+
uses: python-semantic-release/upload-to-gh-release@20f89b4f4295bb541e2fa54418e606eefbd0f567 # v9.7.3
4141
if: ${{ steps.release.outputs.released }} == 'true'
4242
with:
4343
github_token: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}

.github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ jobs:
1818
attestations: write
1919
id-token: write
2020
steps:
21-
- run: sudo apt-get install tree # workaround for "tree: command not found" in baipp
2221
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
23-
- uses: hynek/build-and-inspect-python-package@4aea7de65ba374f49b5f549cd471b61de2ef19d3 # v2.5.0
22+
- uses: hynek/build-and-inspect-python-package@b4fc3f6ba2b3da04f09659be99e2a29fb6146a61 # v2.6.0
2423
with:
2524
attest-build-provenance-github: 'true'
2625
publish:

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939

4040
# required for Code scanning alerts
4141
- name: Upload SARIF results to code scanning
42-
uses: github/codeql-action/upload-sarif@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
42+
uses: github/codeql-action/upload-sarif@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6
4343
with:
4444
sarif_file: results.sarif

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,5 @@ jobs:
9696
name: Build and inspect the package
9797
runs-on: ubuntu-24.04
9898
steps:
99-
- run: sudo apt-get install tree # workaround for "tree: command not found" in baipp
10099
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
101-
- uses: hynek/build-and-inspect-python-package@4aea7de65ba374f49b5f549cd471b61de2ef19d3 # v2.5.0
100+
- uses: hynek/build-and-inspect-python-package@b4fc3f6ba2b3da04f09659be99e2a29fb6146a61 # v2.6.0

0 commit comments

Comments
 (0)