Skip to content

Commit dce63b5

Browse files
Merge pull request #367 from egraphs-good/dependabot/github_actions/actions-117e01086c
Bump the actions group across 1 directory with 6 updates
2 parents 0e36db0 + 18e0542 commit dce63b5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- "3.11"
2626
steps:
2727
- uses: actions/checkout@v5
28-
- uses: astral-sh/setup-uv@v6
28+
- uses: astral-sh/setup-uv@v7
2929
with:
3030
enable-cache: true
3131
python-version: ${{ matrix.py }}
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v5
41-
- uses: astral-sh/setup-uv@v6
41+
- uses: astral-sh/setup-uv@v7
4242
with:
4343
enable-cache: true
4444
- uses: dtolnay/[email protected]
@@ -56,18 +56,18 @@ jobs:
5656
steps:
5757
- uses: actions/checkout@v5
5858
- name: Set up Python
59-
uses: actions/setup-python@v5
59+
uses: actions/setup-python@v6
6060
with:
6161
python-version-file: ".python-version"
62-
- uses: astral-sh/setup-uv@v6
62+
- uses: astral-sh/setup-uv@v7
6363
with:
6464
enable-cache: true
6565
- uses: dtolnay/[email protected]
6666
- uses: Swatinem/rust-cache@v2
6767
- run: |
6868
export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
6969
uv sync --extra test --locked
70-
- uses: CodSpeedHQ/action@v4.0.1
70+
- uses: CodSpeedHQ/action@v4.3.1
7171
with:
7272
token: ${{ secrets.CODSPEED_TOKEN }}
7373
# allow updating snapshots due to indeterministic benchmarks
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- uses: actions/checkout@v5
81-
- uses: astral-sh/setup-uv@v6
81+
- uses: astral-sh/setup-uv@v7
8282
with:
8383
enable-cache: true
8484
- uses: dtolnay/[email protected]

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Get PR details
1919
id: pr-details
20-
uses: actions/github-script@v7
20+
uses: actions/github-script@v8
2121
with:
2222
script: |
2323
const { data: pullRequest } = await github.rest.pulls.get({
@@ -37,7 +37,7 @@ jobs:
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838

3939
- name: Set up Python
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: '3.12'
4343

.github/workflows/version.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
command: build
7373
args: --release --sdist -o dist --find-interpreter
7474
- name: Upload wheels
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: wheels-linux-${{ matrix.target }}
7878
path: dist
@@ -97,7 +97,7 @@ jobs:
9797
command: build
9898
args: --release --sdist -o dist --find-interpreter
9999
- name: Upload wheels
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: wheels-linux
103103
path: dist
@@ -119,7 +119,7 @@ jobs:
119119
command: build
120120
args: --release -o dist --find-interpreter
121121
- name: Upload wheels
122-
uses: actions/upload-artifact@v4
122+
uses: actions/upload-artifact@v5
123123
with:
124124
name: wheels-windows
125125
path: dist
@@ -142,7 +142,7 @@ jobs:
142142
target: universal2-apple-darwin
143143
args: --release -o dist --find-interpreter
144144
- name: Upload wheels
145-
uses: actions/upload-artifact@v4
145+
uses: actions/upload-artifact@v5
146146
with:
147147
name: wheels-macos
148148
path: dist
@@ -153,7 +153,7 @@ jobs:
153153
if: startsWith(github.ref, 'refs/tags/') || (github.event_name == 'workflow_dispatch')
154154
needs: [macos, windows, linux, linux-cross, bump]
155155
steps:
156-
- uses: actions/download-artifact@v5
156+
- uses: actions/download-artifact@v6
157157
with:
158158
pattern: wheels-*
159159
merge-multiple: true

0 commit comments

Comments
 (0)