Skip to content

Commit cd3c295

Browse files
Warashikhanhtc1202
andauthored
* Update workflow running containers to ubuntu-24.04 (#5483) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> * Update actions/cache to v4 (#5486) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> * Update setup-helm version to v4 (#5487) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> * Update codeql version to v3 (#5488) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> * Update pipe-cd/actions-gh-release to version v2.6.0 (#5489) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> * Update softprops/action-gh-release to version v2.2.1 (#5490) Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> --------- Signed-off-by: khanhtc1202 <[email protected]> Signed-off-by: Shinnosuke Sawada-Dazai <[email protected]> Co-authored-by: Khanh Tran <[email protected]>
1 parent 1f80828 commit cd3c295

17 files changed

+37
-37
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
go:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04
2222
steps:
2323
- uses: actions/checkout@v3
2424
- uses: actions/setup-go@v3
@@ -29,7 +29,7 @@ jobs:
2929
run: make build/go
3030

3131
web:
32-
runs-on: ubuntu-latest
32+
runs-on: ubuntu-24.04
3333
steps:
3434
- uses: actions/checkout@v3
3535
- uses: actions/setup-node@v3
@@ -38,7 +38,7 @@ jobs:
3838
- name: Get yarn cache directory path
3939
id: yarn-cache-dir-path
4040
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
41-
- uses: actions/cache@v2
41+
- uses: actions/cache@v4
4242
id: yarn-cache
4343
with:
4444
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -51,13 +51,13 @@ jobs:
5151
run: make build/web
5252

5353
chart:
54-
runs-on: ubuntu-latest
54+
runs-on: ubuntu-24.04
5555
steps:
5656
- uses: actions/checkout@v3
5757
with:
5858
fetch-depth: 0
5959
- name: Install helm
60-
uses: Azure/setup-helm@v1
60+
uses: azure/setup-helm@v4
6161
with:
6262
version: ${{ env.HELM_VERSION }}
6363
- name: Package helm charts

.github/workflows/build_tool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
tool:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
strategy:
1818
matrix:
1919
image:

.github/workflows/cherry_pick.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
type: string
1414
jobs:
1515
tool:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@v3
1919
with:

.github/workflows/code-butler.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
review:
1313
if: startsWith(github.event.comment.body, '/review')
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: ca-dp/code-butler@v1
1717
with:
@@ -21,7 +21,7 @@ jobs:
2121
model: gpt-4-1106-preview
2222
chat:
2323
if: startsWith(github.event.comment.body, '/chat')
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-24.04
2525
steps:
2626
- uses: ca-dp/code-butler@v1
2727
with:

.github/workflows/codeql-analysis.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
analyze:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111

1212
strategy:
1313
fail-fast: false
@@ -16,9 +16,9 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
- uses: github/codeql-action/init@v2
19+
- uses: github/codeql-action/init@v3
2020
with:
2121
languages: ${{ matrix.language }}
22-
- uses: github/codeql-action/autobuild@v2
22+
- uses: github/codeql-action/autobuild@v3
2323
- name: Perform CodeQL Analysis
24-
uses: github/codeql-action/analyze@v2
24+
uses: github/codeql-action/analyze@v3

.github/workflows/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
code:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout repository
1212
uses: actions/checkout@v3

.github/workflows/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
permissions:
99
contents: read
1010
pull-requests: write
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/labeler@v4
1414
with:

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
go:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: golangci-lint
@@ -26,7 +26,7 @@ jobs:
2626
golangci_lint_version: ${{ env.GOLANGCI_LINT_VERSION }}
2727

2828
web:
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- uses: actions/checkout@v3
3232
- uses: actions/setup-node@v3
@@ -35,7 +35,7 @@ jobs:
3535
- name: Get yarn cache directory path
3636
id: yarn-cache-dir-path
3737
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
38-
- uses: actions/cache@v2
38+
- uses: actions/cache@v4
3939
id: yarn-cache
4040
with:
4141
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/prerelease.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010

1111
jobs:
1212
gh-release:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
18-
- uses: pipe-cd/actions-gh-release@v2.4.0
18+
- uses: pipe-cd/actions-gh-release@v2.6.0
1919
with:
2020
release_file: 'RELEASE'
2121
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish_binary.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ env:
1010

1111
jobs:
1212
gh_release:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- run: echo "not implemented"
1616

1717
binary:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
needs: gh_release
2020
permissions:
2121
contents: write
@@ -42,7 +42,7 @@ jobs:
4242
make build/go MOD=pipectl BUILD_OS=darwin BUILD_ARCH=arm64 BIN_SUFFIX=_${{ env.PIPECD_VERSION }}_darwin_arm64
4343
4444
- name: Publish binary artifacts
45-
uses: softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5 #v0.1.14
45+
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda #v2.2.1
4646
if: startsWith(github.ref, 'refs/tags/')
4747
with:
4848
files: |

0 commit comments

Comments
 (0)