Skip to content

Commit 53dcf30

Browse files
chore(internal): update actions/checkout version
1 parent 9c8f7ea commit 53dcf30

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: CI
22
on:
33
push:
44
branches-ignore:
5-
- 'generated'
6-
- 'codegen/**'
7-
- 'integrated/**'
8-
- 'stl-preview-head/**'
9-
- 'stl-preview-base/**'
5+
- "generated"
6+
- "codegen/**"
7+
- "integrated/**"
8+
- "stl-preview-head/**"
9+
- "stl-preview-base/**"
1010
pull_request:
1111
branches-ignore:
12-
- 'stl-preview-head/**'
13-
- 'stl-preview-base/**'
12+
- "stl-preview-head/**"
13+
- "stl-preview-base/**"
1414

1515
jobs:
1616
lint:
@@ -19,15 +19,15 @@ jobs:
1919
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
2020
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
2121
steps:
22-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
2323

2424
- name: Install Rye
2525
run: |
2626
curl -sSf https://rye.astral.sh/get | bash
2727
echo "$HOME/.rye/shims" >> $GITHUB_PATH
2828
env:
29-
RYE_VERSION: '0.44.0'
30-
RYE_INSTALL_OPTION: '--yes'
29+
RYE_VERSION: "0.44.0"
30+
RYE_INSTALL_OPTION: "--yes"
3131

3232
- name: Install dependencies
3333
run: rye sync --all-features
@@ -44,15 +44,15 @@ jobs:
4444
id-token: write
4545
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
4646
steps:
47-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
47+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
4848

4949
- name: Install Rye
5050
run: |
5151
curl -sSf https://rye.astral.sh/get | bash
5252
echo "$HOME/.rye/shims" >> $GITHUB_PATH
5353
env:
54-
RYE_VERSION: '0.44.0'
55-
RYE_INSTALL_OPTION: '--yes'
54+
RYE_VERSION: "0.44.0"
55+
RYE_INSTALL_OPTION: "--yes"
5656

5757
- name: Install dependencies
5858
run: rye sync --all-features
@@ -81,15 +81,15 @@ jobs:
8181
runs-on: ${{ github.repository == 'stainless-sdks/gitpod-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
8282
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
8383
steps:
84-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
84+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
8585

8686
- name: Install Rye
8787
run: |
8888
curl -sSf https://rye.astral.sh/get | bash
8989
echo "$HOME/.rye/shims" >> $GITHUB_PATH
9090
env:
91-
RYE_VERSION: '0.44.0'
92-
RYE_INSTALL_OPTION: '--yes'
91+
RYE_VERSION: "0.44.0"
92+
RYE_INSTALL_OPTION: "--yes"
9393

9494
- name: Bootstrap
9595
run: ./scripts/bootstrap

.github/workflows/publish-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
id-token: write
1818

1919
steps:
20-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
20+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
2121

2222
- name: Install Rye
2323
uses: eifinger/setup-rye@c694239a43768373e87d0103d7f547027a23f3c8 # v4
2424
with:
2525
version: '0.44.0'
26-
26+
2727
- name: Sync dependencies
2828
run: rye sync
2929

3030
- name: Build package
3131
run: rye build --clean
32-
32+
3333
- name: Publish to PyPI
3434
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
3535
with:

0 commit comments

Comments
 (0)