Skip to content

Commit d3d20e8

Browse files
salmanmkcdims
authored andcommitted
Upgrade GitHub Actions for Node 24 compatibility
1 parent 2cd15f1 commit d3d20e8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/publish-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}
2626

.github/workflows/release-binaries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
arch: [amd64, arm64]
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}
2525
fetch-depth: 0 # Fetch all history for proper versioning
@@ -61,7 +61,7 @@ jobs:
6161
find . -name "cadvisor*" -type f -not -name "*.sha256" -exec sh -c 'sha256sum "$1" > "$1.sha256"' _ {} \;
6262
6363
- name: Upload artifacts
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: cadvisor-linux-${{ matrix.arch }}
6767
path: |
@@ -75,7 +75,7 @@ jobs:
7575
contents: write # Needed for creating GitHub releases
7676
steps:
7777
- name: Checkout repository
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v6
7979
with:
8080
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}
8181

@@ -88,7 +88,7 @@ jobs:
8888
fi
8989
9090
- name: Download all artifacts
91-
uses: actions/download-artifact@v4
91+
uses: actions/download-artifact@v7
9292
with:
9393
path: artifacts
9494

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
timeout-minutes: 30
1212
steps:
1313
- name: Install Go
14-
uses: actions/setup-go@v5
14+
uses: actions/setup-go@v6
1515
with:
1616
go-version: ${{ matrix.go-versions }}
1717
check-latest: true
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
- name: Run presubmit checks
2121
run: |
2222
source ${{ matrix.environment-variables }}
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 30
3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
- name: Run integration tests
4343
env:
4444
GOLANG_VERSION: ${{ matrix.go-versions }}
@@ -47,7 +47,7 @@ jobs:
4747
source ${{ matrix.environment-variables }}
4848
make docker-test-integration
4949
- name: Upload cAdvisor log file
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v6
5151
if: failure()
5252
with:
5353
name: cadvisor.log
@@ -61,7 +61,7 @@ jobs:
6161
timeout-minutes: 30
6262
steps:
6363
- name: Checkout code
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565
- name: Run CRI-O integration tests
6666
env:
6767
GOLANG_VERSION: ${{ matrix.go-versions }}
@@ -70,7 +70,7 @@ jobs:
7070
source build/config/crio.sh
7171
make docker-test-integration-crio
7272
- name: Upload cAdvisor log file
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v6
7474
if: failure()
7575
with:
7676
name: cadvisor-crio.log

0 commit comments

Comments
 (0)