Skip to content

Commit b4d74dd

Browse files
Merge pull request #9 from fleetingbytes/develop
ci: update action versions
2 parents c32a329 + b726510 commit b4d74dd

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- !step
4343
name: Setup | Checkout Repository at Workflow SHA
44-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
44+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4545
with:
4646
ref: ${{ github.sha }}
4747
fetch-depth: 0
@@ -51,13 +51,13 @@ jobs:
5151

5252
- !step
5353
name: Setup | Install Python
54-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
54+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
5555
with:
5656
python-version-file: .python-version
5757

5858
- !step
5959
name: Setup | Install uv
60-
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
60+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
6161
- name: Setup | Install python-semantic-release
6262
env:
6363
UV_NO_MANAGED_PYTHON: true
@@ -78,7 +78,7 @@ jobs:
7878
- !step
7979
name: Upload | Distribution Artifacts
8080
if: ${{ steps.version.outputs.released == 'true' }}
81-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
81+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8282
with:
8383
name: ${{ inputs.distribution-artifacts-name }}
8484
path: ${{ format('{0}/**', inputs.distribution-artifacts-dir) }}
@@ -87,7 +87,7 @@ jobs:
8787
- !step
8888
name: Upload | Lock File Artifact
8989
if: ${{ steps.version.outputs.released == 'true' }}
90-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
90+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9191
with:
9292
name: ${{ inputs.lockfile-artifact }}
9393
path: ${{ inputs.lockfile-artifact }}

.github/workflows/continuous-delivery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- !step
2929
name: Setup | Checkout Repository
30-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3131
- !step
3232
name: Lint
3333
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
@@ -136,7 +136,7 @@ jobs:
136136
steps:
137137
- !step
138138
name: Setup | Download Build Artifacts
139-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
139+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
140140
id: artifact-download
141141
with:
142142
name: ${{ inputs.distribution-artifacts-name }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- !step
5555
name: Setup | Checkout Repository on Release Branch
56-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
56+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5757
with:
5858
ref: ${{ github.ref_name }}
5959
fetch-depth: 0
@@ -63,13 +63,13 @@ jobs:
6363

6464
- !step
6565
name: Setup | Install Python
66-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
66+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
6767
with:
6868
python-version-file: .python-version
6969

7070
- !step
7171
name: Setup | Install uv
72-
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
72+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
7373
- name: Setup | Install python-semantic-release
7474
run: uv tool install python-semantic-release
7575

@@ -78,15 +78,15 @@ jobs:
7878

7979
- !step
8080
name: Setup | Download Build Artifacts
81-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
81+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
8282
id: artifact-download
8383
with:
8484
name: ${{ inputs.distribution-artifacts-name }}
8585
path: ${{ inputs.distribution-artifacts-dir }}
8686

8787
- !step
8888
name: Setup | Download Lock File Artifact
89-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
89+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
9090
with:
9191
name: ${{ inputs.lockfile-artifact }}
9292

.github/workflows/test-e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
steps:
3939
- !step
4040
name: Setup | Checkout Repository
41-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4242
with:
4343
ref: ${{ github.sha }}
4444
fetch-depth: 1
4545

4646
- !step
4747
name: Setup | Download Distribution Artifacts
48-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
48+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4949
if: ${{ inputs.new-release-detected == 'true' }}
5050
id: artifact-download
5151
with:
@@ -54,13 +54,13 @@ jobs:
5454

5555
- !step
5656
name: Setup | Install Python
57-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
57+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
5858
with:
5959
python-version-file: .python-version
6060

6161
- !step
6262
name: Setup | Install uv
63-
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
63+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
6464
- name: Setup | Install Project Dependencies for Test
6565
env:
6666
UV_NO_MANAGED_PYTHON: true

0 commit comments

Comments
 (0)