Skip to content

Commit c7353cb

Browse files
committed
chore: Update GitHub Actions to latest version
Update the GitHub Actions in build.yml file to use the latest versions (v4) for actions/checkout and actions/upload-artifact. This ensures that we are using the most up-to-date features and fixes in our CI/CD pipeline.
1 parent 225f9fc commit c7353cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs: {
1818
"steps": [
1919
{
2020
"name": "Checkout code",
21-
"uses": "actions/checkout@v3",
21+
"uses": "actions/checkout@v4",
2222
},
2323
{
2424
"name": "Build docker image",
@@ -38,7 +38,7 @@ jobs: {
3838
},
3939
{
4040
"name": "Release the tar file to artifacts",
41-
"uses": "actions/upload-artifact@v3",
41+
"uses": "actions/upload-artifact@v4",
4242
"with": {
4343
"name": "release-${{ matrix.version }}-${{ matrix.architecture }}.tar.gz",
4444
"path": "build/release-${{ matrix.version }}-${{ matrix.architecture }}.tar.gz",
@@ -52,7 +52,7 @@ jobs: {
5252
"steps": [
5353
{
5454
"name": "Checkout code",
55-
"uses": "actions/checkout@v3",
55+
"uses": "actions/checkout@v4",
5656
},
5757
{
5858
"name": "Create release tag",
@@ -67,7 +67,7 @@ jobs: {
6767
},
6868
{
6969
"name": "Download release tar files",
70-
"uses": "actions/download-artifact@v3",
70+
"uses": "actions/download-artifact@v4",
7171
"with": {
7272
"path": "artifacts/",
7373
},

0 commit comments

Comments
 (0)