Skip to content

Commit aaa2d25

Browse files
committed
Update GitHub actions
Signed-off-by: dkwon17-test <dakwon@redhat.com>
1 parent 295b494 commit aaa2d25

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/next-container-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ on:
1919
jobs:
2020

2121
build-next-images:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-24.04
2323

2424
outputs:
2525
git-sha: ${{ steps.git-sha.outputs.sha }}
2626

2727
steps:
2828
- name: Checkout web-terminal-exec source code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v4
3030

3131
- name: Set output for Git short SHA
3232
id: git-sha

.github/workflows/pr-check.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ on:
1919
jobs:
2020
go:
2121
name: Check sources
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
-
2525
name: Set up Go 1.x
26-
uses: actions/setup-go@v2
26+
uses: actions/setup-go@v5
2727
with:
28-
go-version: 1.21.13
28+
go-version: '1.21.13'
2929
-
3030
name: Check out code into the Go module directory
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232
-
3333
name: Cache go modules
3434
id: cache-mod
35-
uses: actions/cache@v2
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/go/pkg/mod
3838
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -80,7 +80,7 @@ jobs:
8080
steps:
8181
-
8282
name: Check out code into the Go module directory
83-
uses: actions/checkout@v2
83+
uses: actions/checkout@v4
8484
-
8585
name: Check if dockerimage build is working
8686
run: docker build -f ./build/Dockerfile .

0 commit comments

Comments
 (0)