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

Migrate workflow files to use supported versions of GitHub Actions dependencies #1176

Merged
merged 1 commit into from
Jun 9, 2024
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
2 changes: 1 addition & 1 deletion .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description:
runs:
using: composite
steps:
- uses: actions/setup-python@v4.6.1
- uses: actions/setup-python@v5.1.0
with:
# This should include all major.minor versions supported by the runtime, plus
# OLD_BUILD_PYTHON_VERSION, MIN_BUILD_PYTHON_VERSION and
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
product:
runs-on: ubuntu-20.04
steps:
- uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v3.5.3
- uses: smorimoto/tune-github-hosted-runner-network@v1.0.0
- uses: actions/checkout@v4.1.6

- uses: ./.github/actions/setup-python
id: setup-python
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
./gradlew publish -P cmakeBuildType=Release

- name: Upload Maven repository
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.3
with:
name: maven
# There's a fairly large per-file overhead, so exclude the hash files.
Expand Down Expand Up @@ -74,8 +74,8 @@ jobs:
docs:
runs-on: ubuntu-20.04
steps:
- uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v3.5.3
- uses: smorimoto/tune-github-hosted-runner-network@v1.0.0
- uses: actions/checkout@v4.1.6

- uses: ./.github/actions/setup-python
id: setup-python
Expand All @@ -93,7 +93,7 @@ jobs:
cd product
./gradlew docs

- uses: actions/upload-artifact@v3.1.2
- uses: actions/upload-artifact@v4.3.3
with:
name: docs
path: |
Expand All @@ -105,8 +105,8 @@ jobs:
gradlePython:
runs-on: ubuntu-20.04
steps:
- uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v3.5.3
- uses: smorimoto/tune-github-hosted-runner-network@v1.0.0
- uses: actions/checkout@v4.1.6

- uses: ./.github/actions/setup-python

Expand All @@ -122,13 +122,13 @@ jobs:
needs: [product]
runs-on: ubuntu-20.04
steps:
- uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v3.5.3
- uses: smorimoto/tune-github-hosted-runner-network@v1.0.0
- uses: actions/checkout@v4.1.6

- uses: ./.github/actions/setup-python

- name: Download Maven repository
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.7
with:
name: maven
path: maven
Expand All @@ -145,7 +145,7 @@ jobs:
export JAVA_HOME=$JAVA_HOME_17_X64
./gradlew assembleRelease

- uses: actions/upload-artifact@v3.1.2
- uses: actions/upload-artifact@v4.3.3
with:
name: demo
path: demo/app/build/outputs/apk/release
Expand All @@ -171,14 +171,14 @@ jobs:

runs-on: ${{ matrix.runs-on }}
steps:
- uses: smorimoto/tune-github-hosted-runner-network@v1
- uses: actions/checkout@v3.5.3
- uses: smorimoto/tune-github-hosted-runner-network@v1.0.0
- uses: actions/checkout@v4.1.6

- uses: ./.github/actions/setup-python
id: setup-python

- name: Download Maven repository
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.7
with:
name: maven
path: maven
Expand Down