Skip to content

Commit

Permalink
Build: bump composite actions (#706)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexklibisz authored Jul 15, 2024
1 parent da9c317 commit ea19bfc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
runs-on:
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
timeout-minutes: 1
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -72,20 +72,20 @@ jobs:
runs-on:
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
timeout-minutes: 1
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
timeout-minutes: 1
with:
python-version: '3.10.8'
cache: 'pip'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -116,19 +116,19 @@ jobs:
- ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
timeout-minutes: 1
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
timeout-minutes: 1
with:
python-version: '3.10.8'
Expand Down Expand Up @@ -163,9 +163,9 @@ jobs:
- ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
timeout-minutes: 1
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-old-pre-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: python3 -m pip install requests
- run: python3 .github/scripts/delete_old_pre_releases.py
6 changes: 3 additions & 3 deletions .github/workflows/release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10.8'
cache: 'pip'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Jekyll Site
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed for git-based changelog.
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Assemble
Expand All @@ -46,12 +46,12 @@ jobs:
- ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10.8'
cache: 'pip'
- uses: arduino/setup-task@v1
- uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup pypirc file
Expand Down

0 comments on commit ea19bfc

Please sign in to comment.