Skip to content

Commit dd94549

Browse files
committed
Merge branch 'master' into array_lbound
2 parents d590370 + 2cf9f45 commit dd94549

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ concurrency:
2121
jobs:
2222
setup:
2323
name: 'Load job configuration'
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-22.04
2525
outputs:
2626
compilers: ${{ steps.load-config.outputs.compilers }}
2727
steps:
28-
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
28+
- uses: actions/checkout@v4
2929
# This step checks if we want to skip CI entirely, then outputs the compilers to be used for
3030
# each job. A little overkill, as we don't intend to support multiple platforms, but I digress.
3131
- id: load-config
@@ -56,7 +56,7 @@ jobs:
5656
5757
ci:
5858
name: '[ci] ${{ matrix.dc }}/${{ matrix.build }}-${{ matrix.stat_type }}'
59-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-22.04
6060
needs: setup
6161
# Only run if the setup phase explicitly defined compilers to be used
6262
if: ${{ fromJSON(needs.setup.outputs.compilers) != '' && fromJSON(needs.setup.outputs.compilers) != '[]' }}
@@ -91,15 +91,15 @@ jobs:
9191
stat_type: none
9292
steps:
9393
- name: Checkout repo
94-
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
94+
uses: actions/checkout@v4
9595
- name: Setup D compiler
96-
uses: dlang-community/setup-dlang@763d869b4d67e50c3ccd142108c8bca2da9df166
96+
uses: dlang-community/setup-dlang@v1.3.0
9797
with:
9898
compiler: ${{ matrix.dc }}
9999
- name: Install dependencies
100100
run: sudo apt-get -y update && sudo apt-get -y install libpq-dev libevent-dev libcurl4-gnutls-dev postgresql
101101
- name: Cache dub dependencies
102-
uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
102+
uses: actions/cache@v4
103103
with:
104104
path: ~/.dub/packages
105105
key: ubuntu-latest-build-${{ hashFiles('**/dub.sdl', '**/dub.json') }}
@@ -125,4 +125,4 @@ jobs:
125125
shell: bash
126126
- name: Upload coverage data
127127
if: matrix.build == 'tests_and_cov'
128-
uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b
128+
uses: codecov/codecov-action@v2

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
build_docs:
1919
name: Build documentation
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121
permissions:
2222
# Allow this action and this action only to write to the repo itself
2323
contents: write

0 commit comments

Comments
 (0)