Skip to content

Commit 3300f82

Browse files
Update GitHub Actions (#82)
Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com> Co-authored-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com>
1 parent 73392a6 commit 3300f82

9 files changed

Lines changed: 17 additions & 17 deletions

.github/workflows/build-bink-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
packages: write
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v7
4040

4141
- name: Log in to GHCR
4242
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push)

.github/workflows/build-cluster-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
packages: write
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v7
3232

3333
- name: Log in to GHCR
3434
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push)

.github/workflows/build-dns-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
packages: write
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v7
3232

3333
- name: Log in to GHCR
3434
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push)

.github/workflows/build-node-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: dnf install -y --setopt=install_weak_deps=0 podman git make
5252

5353
- name: Checkout
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v7
5555

5656
- name: Log in to GHCR
5757
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.push)

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v7
3131

3232
- name: Configure kernel for nested containers
3333
run: |
@@ -47,7 +47,7 @@ jobs:
4747
cat /sys/kernel/mm/ksm/run
4848
4949
- name: Set up Go
50-
uses: actions/setup-go@v5
50+
uses: actions/setup-go@v6
5151
with:
5252
go-version-file: go.mod
5353
cache: true
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: Restore cached images
106106
id: image-cache
107-
uses: actions/cache/restore@v4
107+
uses: actions/cache/restore@v6
108108
with:
109109
path: /tmp/podman-image-cache
110110
key: podman-images-v2-integration-${{ steps.digests.outputs.hash }}
@@ -130,7 +130,7 @@ jobs:
130130
131131
- name: Save image cache
132132
if: steps.image-cache.outputs.cache-hit != 'true'
133-
uses: actions/cache/save@v4
133+
uses: actions/cache/save@v6
134134
with:
135135
path: /tmp/podman-image-cache
136136
key: podman-images-v2-integration-${{ steps.digests.outputs.hash }}
@@ -147,7 +147,7 @@ jobs:
147147

148148
- name: Upload logs
149149
if: failure()
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v7
151151
with:
152152
name: test-logs
153153
path: /tmp/bink-logs/

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
packages: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v7
2020

2121
- name: Extract version from tag
2222
id: version

.github/workflows/reuse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
reuse:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v7
1414
- name: REUSE Compliance Check
15-
uses: fsfe/reuse-action@v5
15+
uses: fsfe/reuse-action@v6

.github/workflows/test-container-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v7
3232

3333
- name: Set up KVM
3434
run: |
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Restore cached images
7373
id: image-cache
74-
uses: actions/cache/restore@v4
74+
uses: actions/cache/restore@v6
7575
with:
7676
path: /tmp/podman-image-cache
7777
key: podman-images-v2-container-test-${{ steps.digests.outputs.hash }}
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Save image cache
9999
if: steps.image-cache.outputs.cache-hit != 'true'
100-
uses: actions/cache/save@v4
100+
uses: actions/cache/save@v6
101101
with:
102102
path: /tmp/podman-image-cache
103103
key: podman-images-v2-container-test-${{ steps.digests.outputs.hash }}

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v7
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version-file: go.mod
2626
cache: true

0 commit comments

Comments
 (0)