Skip to content

Commit 0f2d814

Browse files
committed
Update self version numbers
1 parent 2e83293 commit 0f2d814

7 files changed

Lines changed: 63 additions & 63 deletions

File tree

.github/workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To use one, put something like this in your _Github Actions_ workfow:
55
```
66
jobs:
77
some-name:
8-
uses: hpcflow/github-support/.github/workflows/the-workflow-name.yml@main
8+
uses: hpcflow/github-support/.github/workflows/the-workflow-name.yml@0.4
99
with:
1010
argument-1: argument-value
1111
argument-2: ...

.github/workflows/benchmark-impl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
with:
6767
python-version: ${{ matrix.python-version }}
6868
- name: Set up poetry
69-
uses: hpcflow/github-support/setup-poetry@main
69+
uses: hpcflow/github-support/setup-poetry@0.4
7070
with:
7171
version: ${{ inputs.poetry-version }}
7272
- name: Cache dependencies
73-
uses: hpcflow/github-support/init-cache@0.3
73+
uses: hpcflow/github-support/init-cache@0.4
7474
with:
7575
name: benchmark
7676
version: ${{ matrix.python-version }}

.github/workflows/build-exes-impl.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ jobs:
175175
python-version: ${{ inputs.python-version }}
176176

177177
- name: Set up poetry
178-
uses: hpcflow/github-support/setup-poetry@main
178+
uses: hpcflow/github-support/setup-poetry@0.4
179179
with:
180180
version: ${{ inputs.poetry-version }}
181181

182182
- name: Cache dependencies
183-
uses: hpcflow/github-support/init-cache@main
183+
uses: hpcflow/github-support/init-cache@0.4
184184
with:
185185
name: test
186186
version: ${{ inputs.python-version }}
@@ -234,7 +234,7 @@ jobs:
234234
with:
235235
python-version: ${{ inputs.python-version }}
236236
- name: Cache dependencies
237-
uses: hpcflow/github-support/init-cache@0.3
237+
uses: hpcflow/github-support/init-cache@0.4
238238
with:
239239
name: build-exe
240240
version: ${{ inputs.python-version }}
@@ -246,7 +246,7 @@ jobs:
246246
path: ${{ inputs.executable_name }}-app-data-cache
247247

248248
- name: Set up poetry
249-
uses: hpcflow/github-support/setup-poetry@main
249+
uses: hpcflow/github-support/setup-poetry@0.4
250250
with:
251251
version: ${{ inputs.poetry-version }}
252252

@@ -362,7 +362,7 @@ jobs:
362362
with:
363363
python-version: ${{ inputs.python-version }}
364364
- name: Cache dependencies
365-
uses: hpcflow/github-support/init-cache@0.3
365+
uses: hpcflow/github-support/init-cache@0.4
366366
with:
367367
name: build-exe
368368
version: ${{ inputs.python-version }}
@@ -374,7 +374,7 @@ jobs:
374374
path: ${{ inputs.executable_name }}-app-data-cache
375375

376376
- name: Set up poetry
377-
uses: hpcflow/github-support/setup-poetry@main
377+
uses: hpcflow/github-support/setup-poetry@0.4
378378
with:
379379
version: ${{ inputs.poetry-version }}
380380

@@ -481,7 +481,7 @@ jobs:
481481
detached: true
482482

483483
- name: Cache dependencies
484-
uses: hpcflow/github-support/init-cache@0.3
484+
uses: hpcflow/github-support/init-cache@0.4
485485
with:
486486
name: build-exe
487487
version: ${{ inputs.python-version }}
@@ -504,7 +504,7 @@ jobs:
504504
with:
505505
image: ghcr.io/hpcflow/rockylinux8-python:latest # most of the options are just so we can debug (via tmate) when we have a custom pytest --basetemp directory
506506
options: |
507-
-v ${{ github.workspace }}:/home
507+
-v ${{ github.workspace }}:/home
508508
-u ${{ env.UID }}:${{ env.GID }}
509509
--env HOME=/home
510510
--env XDG_DATA_HOME=/home/.local/share

.github/workflows/doc-build-impl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ jobs:
9999
with:
100100
python-version: ${{ inputs.python-version }}
101101
- name: Install and configure poetry ${{ inputs.poetry-version }}
102-
uses: hpcflow/github-support/setup-poetry@main
102+
uses: hpcflow/github-support/setup-poetry@0.4
103103
with:
104104
version: ${{ inputs.poetry-version }}
105105
- name: Cache Virtual Environment
106-
uses: hpcflow/github-support/init-cache@main
106+
uses: hpcflow/github-support/init-cache@0.4
107107
with:
108108
name: sphinx
109109
version: ${{ inputs.python-version }}

.github/workflows/release-impl.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
ref: ${{ inputs.pr-base-ref }}
172172
token: ${{ secrets.commit-token }}
173173
- name: Configure git
174-
uses: hpcflow/github-support/configure-git@0.3
174+
uses: hpcflow/github-support/configure-git@0.4
175175
- name: Set up python ${{ inputs.python-version }}
176176
uses: actions/setup-python@v6
177177
with:
@@ -307,12 +307,12 @@ jobs:
307307
python-version: ${{ inputs.python-version }}
308308

309309
- name: Set up poetry
310-
uses: hpcflow/github-support/setup-poetry@main
310+
uses: hpcflow/github-support/setup-poetry@0.4
311311
with:
312312
version: ${{ inputs.poetry-version }}
313313

314314
- name: Cache dependencies
315-
uses: hpcflow/github-support/init-cache@main
315+
uses: hpcflow/github-support/init-cache@0.4
316316
with:
317317
name: test
318318
version: ${{ inputs.python-version }}
@@ -362,7 +362,7 @@ jobs:
362362
with:
363363
python-version: ${{ inputs.python-version }}
364364
- name: Cache dependencies
365-
uses: hpcflow/github-support/init-cache@0.3
365+
uses: hpcflow/github-support/init-cache@0.4
366366
with:
367367
name: build
368368
version: ${{ inputs.python-version }}
@@ -374,7 +374,7 @@ jobs:
374374
path: ${{ inputs.executable_name }}-app-data-cache
375375

376376
- name: Set up poetry
377-
uses: hpcflow/github-support/setup-poetry@main
377+
uses: hpcflow/github-support/setup-poetry@0.4
378378
with:
379379
version: ${{ inputs.poetry-version }}
380380

@@ -419,13 +419,13 @@ jobs:
419419
TARGET: ${{ env.BUILT_EXE_BASE_NAME }}-${{ matrix.executable_os }}-dir
420420

421421
- name: Version check (file)
422-
uses: hpcflow/github-support/compare@0.3
422+
uses: hpcflow/github-support/compare@0.4
423423
with:
424424
expected: "${{ inputs.app_name }}, version ${{ needs.bump-version.outputs.version }}"
425425
command: ${{ env.BUILT_EXE_PATH_FILE }} --version
426426

427427
- name: Version check (folder)
428-
uses: hpcflow/github-support/compare@0.3
428+
uses: hpcflow/github-support/compare@0.4
429429
with:
430430
expected: "${{ inputs.app_name }}, version ${{ needs.bump-version.outputs.version }}"
431431
command: ${{ env.BUILT_EXE_PATH_DIR }} --version
@@ -473,7 +473,7 @@ jobs:
473473
with:
474474
ref: ${{ inputs.pr-base-ref }} # otherwise we get the ref when the workflow started (missing above commit)
475475
- name: Cache dependencies
476-
uses: hpcflow/github-support/init-cache@0.3
476+
uses: hpcflow/github-support/init-cache@0.4
477477
with:
478478
name: build
479479
version: ${{ inputs.python-version }}
@@ -573,11 +573,11 @@ jobs:
573573
with:
574574
python-version: ${{ matrix.python-version }}
575575
- name: Set up poetry
576-
uses: hpcflow/github-support/setup-poetry@main
576+
uses: hpcflow/github-support/setup-poetry@0.4
577577
with:
578578
version: ${{ inputs.poetry-version }}
579579
- name: Cache dependencies
580-
uses: hpcflow/github-support/init-cache@0.3
580+
uses: hpcflow/github-support/init-cache@0.4
581581
with:
582582
name: benchmark
583583
version: ${{ matrix.python-version }}
@@ -648,12 +648,12 @@ jobs:
648648
with:
649649
python-version: ${{ inputs.python-version }}
650650
- name: Cache dependencies
651-
uses: hpcflow/github-support/init-cache@0.3
651+
uses: hpcflow/github-support/init-cache@0.4
652652
with:
653653
name: release
654654
version: ${{ inputs.python-version }}
655655
- name: Set up poetry
656-
uses: hpcflow/github-support/setup-poetry@main
656+
uses: hpcflow/github-support/setup-poetry@0.4
657657
with:
658658
version: ${{ inputs.poetry-version }}
659659

@@ -727,7 +727,7 @@ jobs:
727727
token: ${{ secrets.commit-token }}
728728

729729
- name: Configure git
730-
uses: hpcflow/github-support/configure-git@0.3
730+
uses: hpcflow/github-support/configure-git@0.4
731731

732732
- name: Set up python ${{ inputs.python-version }}
733733
uses: actions/setup-python@v6
@@ -757,12 +757,12 @@ jobs:
757757
fi
758758
759759
- name: Cache dependencies
760-
uses: hpcflow/github-support/init-cache@0.3
760+
uses: hpcflow/github-support/init-cache@0.4
761761
with:
762762
name: release-doc
763763
version: ${{ inputs.python-version }}
764764
- name: Set up poetry
765-
uses: hpcflow/github-support/setup-poetry@main
765+
uses: hpcflow/github-support/setup-poetry@0.4
766766
with:
767767
version: ${{ inputs.poetry-version }}
768768

@@ -799,7 +799,7 @@ jobs:
799799
token: ${{ secrets.website-token }}
800800

801801
- name: Configure git
802-
uses: hpcflow/github-support/configure-git@0.3
802+
uses: hpcflow/github-support/configure-git@0.4
803803

804804
- name: Download documentation artifact
805805
uses: actions/download-artifact@v7

0 commit comments

Comments
 (0)