Skip to content

Commit 0f6bc6d

Browse files
dependabot[bot]pw-ppodhajski
authored andcommitted
Bump actions/checkout from 5 to 6 (#9628)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pawel.podhajski <pawel.podhajski@pathway.com> GitOrigin-RevId: fc8b458563160a40f6ee53560800411081607593
1 parent a72b6b5 commit 0f6bc6d

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/package_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_call:
44
inputs:
55
runner:
6-
description: 'select runner'
6+
description: "select runner"
77
type: string
88
required: true
99
concurrency:
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/setup-python@v5
3030

3131
- name: Git checkout
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- name: License files
3535
run: |

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on:
33
workflow_dispatch:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- "v*.*.*"
77
schedule:
8-
- cron: '0 2 * * *'
8+
- cron: "0 2 * * *"
99
concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}
1111
jobs:
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/setup-python@v5
5858

5959
- name: Git checkout
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161

6262
- name: License files
6363
run: |
@@ -179,7 +179,7 @@ jobs:
179179
- name: Create dir for wheels
180180
run: |
181181
mkdir -p wheels
182-
182+
183183
- uses: actions/download-artifact@v5
184184
with:
185185
name: pathway-x86-x64
@@ -229,7 +229,7 @@ jobs:
229229
- uses: actions/download-artifact@v4
230230
if: ${{ matrix.os == needs.start-runner.outputs.label }}
231231
with:
232-
name: pathway-arch64
232+
name: pathway-arch64
233233
path: ./wheels/
234234

235235
- name: Install and verify ${{ matrix.os }} package
@@ -271,7 +271,7 @@ jobs:
271271
- start-runner
272272
name: Publish package
273273
strategy:
274-
fail-fast: false
274+
fail-fast: false
275275
runs-on: ubuntu-22.04
276276
timeout-minutes: 15
277277
steps:
@@ -323,7 +323,7 @@ jobs:
323323
uses: pypa/gh-action-pypi-publish@release/v1
324324
with:
325325
password: ${{ secrets.PYPI_TOKEN }}
326-
packages-dir: './wheels/'
326+
packages-dir: "./wheels/"
327327

328328
- name: Publish package to s3
329329
uses: prewk/s3-cp-action@v2
@@ -369,7 +369,7 @@ jobs:
369369
aws_access_key_id: ${{ secrets.ARTIFACT_AWS_ACCESS_KEY_ID }}
370370
aws_secret_access_key: ${{ secrets.ARTIFACT_AWS_SECRET_ACCESS_KEY }}
371371
source: pip-index.html
372-
dest: ${{ secrets.ARTIFACT_AWS_BUCKET }}/index.html
372+
dest: ${{ secrets.ARTIFACT_AWS_BUCKET }}/index.html
373373

374374
stop-runner:
375375
name: Stop self-hosted EC2 runner

0 commit comments

Comments
 (0)