Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group with 7 updates #362

Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/branchbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'

Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'

Expand Down Expand Up @@ -98,10 +98,10 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'
- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"

Expand Down Expand Up @@ -137,16 +137,16 @@ jobs:
name: "Test sse2 code on Linux (gcc)"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'

- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
repository: rapidfuzz/intel-sde
path: sde

- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: "Generate coverage report for tests"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'
- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"

Expand All @@ -37,7 +37,7 @@ jobs:
coverage xml
coverage report

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were breaking changes in this release!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think that the codecov action worked for external contributors previously.

with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5

- name: Install dependencies
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
run: sphinx-build -b html docs build/html

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: "build/html"

Expand All @@ -49,4 +49,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
14 changes: 7 additions & 7 deletions .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Copy wheel
run: copy dist/*.tar.gz rapidfuzz.tar.gz

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
name: artifact-sdist
path: dist

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5

- name: Copy wheel
run: cp dist/*.tar.gz rapidfuzz.tar.gz
Expand Down Expand Up @@ -194,12 +194,12 @@ jobs:
name: artifact-sdist
path: dist

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5

- name: Copy wheel
run: cp dist/*.tar.gz rapidfuzz.tar.gz

- uses: docker/setup-qemu-action@v2
- uses: docker/setup-qemu-action@v3
name: Set up QEMU

- name: Build wheel
Expand Down Expand Up @@ -229,4 +229,4 @@ jobs:
pattern: artifact-*
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@v1.8.11
- uses: pypa/gh-action-pypi-publish@v1.8.12
4 changes: 2 additions & 2 deletions .github/workflows/submodule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
submodules: 'true'
# checkout never fetches tags for submodules so do it manually
- name: fetch submodule tags
run: |
git submodule foreach --recursive 'git fetch --tags'

- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"

Expand Down
Loading