Skip to content

Commit 2667f72

Browse files
authored
Update actions (#183)
* Add changelog entry * Update GHA
1 parent 4d00193 commit 2667f72

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

.github/workflows/ci-supported-pythons.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020
with:
2121
repository: hynek/structlog
2222
path: structlog
2323
fetch-depth: 0
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
2626
path: action
2727
- uses: ./action
@@ -51,13 +51,13 @@ jobs:
5151
# matrix: ${{ fromJson(needs.build-package.outputs.python-versions) }}
5252

5353
steps:
54-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
54+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
allow-prereleases: true
5858

5959
- name: Download built packages from the build-package job.
60-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
60+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
6161
with:
6262
name: Packages
6363
path: dist
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484

8585
steps:
86-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
86+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
8787
with:
8888
python-version: "3.x"
8989

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222
with:
2323
repository: hynek/argon2-cffi-bindings
2424
submodules: recursive
2525
path: hynek/argon2-cffi-bindings
2626

27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828
with:
2929
path: action
3030

@@ -45,12 +45,12 @@ jobs:
4545
- ubuntu-24.04
4646

4747
steps:
48-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4949
with:
5050
repository: hynek/structlog
5151
path: structlog
5252

53-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
53+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5454
with:
5555
path: action
5656

@@ -70,12 +70,12 @@ jobs:
7070
runs-on: ubuntu-latest
7171

7272
steps:
73-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
73+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7474
with:
7575
repository: pytest-dev/pytest
7676
path: pytest
7777

78-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
78+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7979
with:
8080
path: action
8181

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# It doesn't matter if it's deleted when merged, it'll be re-created
1818
BRANCH_NAME: auto-dependency-upgrades
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121

2222
# START PYTHON DEPENDENCIES
2323
- name: Install uv

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77

88
## [Unreleased](https://github.com/hynek/build-and-inspect-python-package/compare/v2.13.0...main)
99

10+
### Changed
11+
12+
- This release only updates the tools we use.
13+
It's necessary to support Python 3.14 which is now the default for `3.x`.
14+
[#182](https://github.com/hynek/build-and-inspect-python-package/pull/182)
15+
1016

1117
## [2.13.0](https://github.com/hynek/build-and-inspect-python-package/compare/v2.12.0...2.13.0)
1218

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
using: composite
5656

5757
steps:
58-
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
58+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5959
id: python-baipp
6060
with:
6161
python-version: "3.x"
@@ -81,7 +81,7 @@ runs:
8181
shell: bash
8282

8383
- name: Setup uv cache
84-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
84+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8585
with:
8686
path: ${{ env.UV_CACHE_DIR }}
8787
key: baipp-${{ env.REQS_HASH }}
@@ -137,7 +137,7 @@ runs:
137137

138138
- name: Attest GitHub build provenance
139139
if: ${{ inputs.attest-build-provenance-github == 'true' }}
140-
uses: actions/attest-build-provenance@ef244123eb79f2f7a7e75d99086184180e6d0018 # v1.4.4
140+
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
141141
with:
142142
subject-path: "/tmp/baipp/dist/*"
143143

0 commit comments

Comments
 (0)