From 5e0078dd4709eeec83c1d8e39ff1a22c4e463f7b Mon Sep 17 00:00:00 2001 From: Felipe Zipitria Date: Thu, 9 Nov 2023 14:58:52 +0100 Subject: [PATCH] chore: update gha versions Signed-off-by: Felipe Zipitria --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db0249f..673eaee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,16 +18,16 @@ jobs: matrix: nginx_version: ['1.24.0'] # The type of runner that the job will run on - os: [ubuntu-20.04] + os: [ubuntu-22.04] # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: "Checkout repo" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Grab nginx source, from cache if possible, or from web - name: Grab nginx-${{ matrix.nginx_version }} cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-nginx with: path: nginx-${{ matrix.nginx_version }} @@ -41,7 +41,7 @@ jobs: # Grab libcoraza - name: Grab libcoraza-${{ env.libcoraza_version }} cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-pcre with: path: libcoraza-${{ env.libcoraza_version }} @@ -69,7 +69,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: ^1.19.x + go-version: ^1.21.x - name: Configure environment run: |