Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Extract command to run
uses: actions/github-script@v8
uses: actions/github-script@v9.0.0
id: command-extractor
with:
result-encoding: string
Expand All @@ -28,7 +28,7 @@ jobs:

return command[1];
- name: Get github ref
uses: actions/github-script@v8
uses: actions/github-script@v9.0.0
id: get-pr
with:
script: |
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
git push
- name: Post command comment
if: steps.fantomas.outcome == 'success'
uses: actions/github-script@v8
uses: actions/github-script@v9.0.0
with:
script: |
// Probably, there's more universal way of getting outputs, but my gh-actions-fu is not that good.
Expand All @@ -82,7 +82,7 @@ jobs:
});
- name: Post command failed comment
if: failure()
uses: actions/github-script@v8
uses: actions/github-script@v9.0.0
with:
script: |
const body = `Failed to run ${{ steps.command-extractor.outputs.result }}: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}`;
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
mkdir -p fable_library
echo "__version__ = \"$VERSION\"" > fable_library/_version.py
- name: Upload fable-library-py
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: fable-library-py
path: ./temp/fable-library-py
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
manylinux: auto
working-directory: ./temp/fable-library-py
- name: Upload wheels
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: wheels-linux-${{ matrix.platform.target }}
path: ./temp/fable-library-py/dist
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
manylinux: musllinux_1_2
working-directory: ./temp/fable-library-py
- name: Upload wheels
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: ./temp/fable-library-py/dist
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
working-directory: ./temp/fable-library-py
- name: Upload wheels
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: wheels-windows-${{ matrix.platform.target }}
path: ./temp/fable-library-py/dist
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
working-directory: ./temp/fable-library-py
- name: Upload wheels
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: wheels-macos-${{ matrix.platform.target }}
path: ./temp/fable-library-py/dist
Expand All @@ -256,7 +256,7 @@ jobs:
args: --out dist
working-directory: ./temp/fable-library-py
- name: Upload sdist
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: wheels-sdist
path: ./temp/fable-library-py/dist
Expand Down
Loading
Loading