Skip to content

Commit 5364c55

Browse files
committed
Change from commit SHA to major version tags
1 parent a4e4b64 commit 5364c55

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
python-version: ["3.11"]
1313

1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
@@ -55,9 +55,9 @@ jobs:
5555
PACKAGE_NAME: bytecorecompiler
5656

5757
steps:
58-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
58+
- uses: actions/checkout@v4
5959
- name: Setup Python
60-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
60+
uses: actions/setup-python@v5
6161
with:
6262
python-version: ${{ matrix.python-version }}
6363
- name: Install dependencies
@@ -70,7 +70,7 @@ jobs:
7070
python -c "import ${{ env.PACKAGE_NAME }}; print(${{ env.PACKAGE_NAME }})"
7171
shell: bash
7272
- name: Upload distribution archives
73-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: distribution-archives-${{ matrix.os }}-${{ matrix.python-version }}
7676
path: dist
@@ -82,15 +82,15 @@ jobs:
8282

8383
steps:
8484
- name: Download All Artifacts
85-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
85+
uses: actions/download-artifact@v4
8686
with:
8787
path: distribution-archives
8888
pattern: distribution-archives-*
8989
merge-multiple: true
9090
- name: List distribution archives
9191
run: ls --recursive distribution-archives
9292
- name: Upload combined distribution archives
93-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
93+
uses: actions/upload-artifact@v4
9494
with:
9595
name: combined-distribution-archives
9696
path: distribution-archives
@@ -110,9 +110,9 @@ jobs:
110110
PACKAGE_NAME: bytecorecompiler
111111

112112
steps:
113-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
113+
- uses: actions/checkout@v4
114114
- name: Download combined distribution archives
115-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
115+
uses: actions/download-artifact@v4
116116
with:
117117
name: combined-distribution-archives
118118
path: dist

0 commit comments

Comments
 (0)