From ec564e1c271e4fa40cbc8f0389282dd09c0918c9 Mon Sep 17 00:00:00 2001 From: TomerShor Date: Sun, 14 Dec 2025 13:09:37 +0200 Subject: [PATCH] [CI] Bump github actions --- .github/workflows/ci.yaml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 55863db..e70761f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -# Copyright 2019 The Nuclio Authors. +# Copyright 2025 The Nuclio Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ on: pull_request: branches: - development + - master push: branches: @@ -30,13 +31,14 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v6 with: - go-version: "1.14" + cache: true + go-version-file: go.mod - - uses: actions/cache@v2 + - uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -51,13 +53,14 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v6 with: - go-version: "1.14" + cache: true + go-version-file: go.mod - - uses: actions/cache@v2 + - uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}