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

fix: bump workflow runners and actions #1245

Merged
merged 1 commit into from
Oct 13, 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/workflows/authorship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
path: ${{env.CHECKS_REPO}}

- name: Set up stable `alr`
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4

- name: Test authorship
run: ${{env.CHECKS_REPO}}/scripts/check-author.sh "${{ github.event.pull_request.user.login }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-distros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ jobs:

- name: Set up stable `alr`
if: contains(github.base_ref, 'stable-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
toolchain: --disable-assistant # We want to use the external ones in this workflow
version: ${{env.ALR_VERSION}}

- name: Set up devel `alr`
if: contains(github.base_ref, 'devel-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
toolchain: --disable-assistant # We want to use the external ones in this workflow
branch: master
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-native-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- macos-13 # amd64
- macos-latest # arm64
- ubuntu-latest
- windows-latest

Expand All @@ -52,7 +53,7 @@ jobs:
path: ${{env.CHECKS_REPO}}

- name: Set up devel `alr`
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
branch: 'master'

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- macos-13 # amd64
- macos-latest # arm64
- ubuntu-latest
- windows-latest

Expand All @@ -51,14 +52,14 @@ jobs:
# By default, this also sets up the newest indexed native toolchain
- name: Set up stable `alr`
if: contains(github.base_ref, 'stable-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
version: ${{env.ALR_VERSION}}

# By default, this also sets up the newest indexed native toolchain
- name: Set up devel `alr`
if: contains(github.base_ref, 'devel-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
branch: 'master'

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-ports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
fail-fast: false
matrix:
os:
- macos-12
- macos-13 # amd64
- macos-latest # arm64

steps:
- name: Check out alire-index
Expand All @@ -49,7 +50,7 @@ jobs:
path: ${{env.CHECKS_REPO}}

- name: Set up stable `alr`
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
version: ${{env.ALR_VERSION}}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- name: Set up stable `alr`
if: contains(github.base_ref, 'stable-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
version: ${{env.ALR_VERSION}}

- name: Set up devel `alr`
if: contains(github.base_ref, 'devel-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
branch: master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/diff-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Set up devel `alr`
if: contains(github.base_ref, 'devel-')
uses: alire-project/setup-alire@v3
uses: alire-project/setup-alire@v4
with:
toolchain: --disable-assistant # We don't need the compiler
branch: master
Expand Down
2 changes: 1 addition & 1 deletion index/li/libhello/libhello-1.0.1.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ url = "git+https://github.com/alire-project/libhello.git"

# We use this crate as a trigger to conveniently test minor changes to
# metaprocesses of the CI of the repository itself.
# Last touch: 2024-10-09 19:19 CET
# Last touch: 2024-10-13 13:53 CET
Loading