fix: bump workflow runners and actions (#1245)
Due to https://github.com/actions/runner-images/issues/10721
This commit is contained in:
committed by
GitHub
parent
2d813ef507
commit
eeb8fa95cf
@@ -28,7 +28,7 @@ jobs:
|
|||||||
path: ${{env.CHECKS_REPO}}
|
path: ${{env.CHECKS_REPO}}
|
||||||
|
|
||||||
- name: Set up stable `alr`
|
- name: Set up stable `alr`
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
|
|
||||||
- name: Test authorship
|
- name: Test authorship
|
||||||
run: ${{env.CHECKS_REPO}}/scripts/check-author.sh "${{ github.event.pull_request.user.login }}"
|
run: ${{env.CHECKS_REPO}}/scripts/check-author.sh "${{ github.event.pull_request.user.login }}"
|
||||||
|
|||||||
@@ -54,14 +54,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Set up stable `alr`
|
- name: Set up stable `alr`
|
||||||
if: contains(github.base_ref, 'stable-')
|
if: contains(github.base_ref, 'stable-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
||||||
version: ${{env.ALR_VERSION}}
|
version: ${{env.ALR_VERSION}}
|
||||||
|
|
||||||
- name: Set up devel `alr`
|
- name: Set up devel `alr`
|
||||||
if: contains(github.base_ref, 'devel-')
|
if: contains(github.base_ref, 'devel-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
||||||
branch: master
|
branch: master
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-12
|
- macos-13 # amd64
|
||||||
|
- macos-latest # arm64
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- windows-latest
|
- windows-latest
|
||||||
|
|
||||||
@@ -52,7 +53,7 @@ jobs:
|
|||||||
path: ${{env.CHECKS_REPO}}
|
path: ${{env.CHECKS_REPO}}
|
||||||
|
|
||||||
- name: Set up devel `alr`
|
- name: Set up devel `alr`
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
branch: 'master'
|
branch: 'master'
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-12
|
- macos-13 # amd64
|
||||||
|
- macos-latest # arm64
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- windows-latest
|
- windows-latest
|
||||||
|
|
||||||
@@ -51,14 +52,14 @@ jobs:
|
|||||||
# By default, this also sets up the newest indexed native toolchain
|
# By default, this also sets up the newest indexed native toolchain
|
||||||
- name: Set up stable `alr`
|
- name: Set up stable `alr`
|
||||||
if: contains(github.base_ref, 'stable-')
|
if: contains(github.base_ref, 'stable-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
version: ${{env.ALR_VERSION}}
|
version: ${{env.ALR_VERSION}}
|
||||||
|
|
||||||
# By default, this also sets up the newest indexed native toolchain
|
# By default, this also sets up the newest indexed native toolchain
|
||||||
- name: Set up devel `alr`
|
- name: Set up devel `alr`
|
||||||
if: contains(github.base_ref, 'devel-')
|
if: contains(github.base_ref, 'devel-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
branch: 'master'
|
branch: 'master'
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-12
|
- macos-13 # amd64
|
||||||
|
- macos-latest # arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out alire-index
|
- name: Check out alire-index
|
||||||
@@ -49,7 +50,7 @@ jobs:
|
|||||||
path: ${{env.CHECKS_REPO}}
|
path: ${{env.CHECKS_REPO}}
|
||||||
|
|
||||||
- name: Set up stable `alr`
|
- name: Set up stable `alr`
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
version: ${{env.ALR_VERSION}}
|
version: ${{env.ALR_VERSION}}
|
||||||
|
|
||||||
|
|||||||
@@ -9,17 +9,17 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up stable `alr`
|
- name: Set up stable `alr`
|
||||||
if: contains(github.base_ref, 'stable-')
|
if: contains(github.base_ref, 'stable-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
version: ${{env.ALR_VERSION}}
|
version: ${{env.ALR_VERSION}}
|
||||||
|
|
||||||
- name: Set up devel `alr`
|
- name: Set up devel `alr`
|
||||||
if: contains(github.base_ref, 'devel-')
|
if: contains(github.base_ref, 'devel-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
branch: master
|
branch: master
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Set up devel `alr`
|
- name: Set up devel `alr`
|
||||||
if: contains(github.base_ref, 'devel-')
|
if: contains(github.base_ref, 'devel-')
|
||||||
uses: alire-project/setup-alire@v3
|
uses: alire-project/setup-alire@v4
|
||||||
with:
|
with:
|
||||||
toolchain: --disable-assistant # We don't need the compiler
|
toolchain: --disable-assistant # We don't need the compiler
|
||||||
branch: master
|
branch: master
|
||||||
|
|||||||
@@ -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
|
# We use this crate as a trigger to conveniently test minor changes to
|
||||||
# metaprocesses of the CI of the repository itself.
|
# metaprocesses of the CI of the repository itself.
|
||||||
# Last touch: 2024-10-09 19:19 CET
|
# Last touch: 2024-10-13 13:53 CET
|
||||||
|
|||||||
Reference in New Issue
Block a user