Skip to content

Commit a7f43ca

Browse files
Update GitHub Actions
1 parent e239390 commit a7f43ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/rpm-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ jobs:
4848
runs-on: ubuntu-latest
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252

5353
- name: Create Build Artifacts Directory
5454
run: mkdir BUILD_ARTIFACTS
5555

5656
- name: Download Build Artifact
5757
if: ${{ inputs.build_artifact }}
58-
uses: actions/download-artifact@v4
58+
uses: actions/download-artifact@v8
5959
with:
6060
name: ${{ inputs.build_artifact }}
6161
path: BUILD_ARTIFACTS
6262

6363
- name: Set up Docker Buildx
64-
uses: docker/setup-buildx-action@v3
64+
uses: docker/setup-buildx-action@v4
6565

6666
- name: Build rpmbuild Container
6767
uses: docker/build-push-action@v6
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Import GPG key
7777
id: import_gpg
78-
uses: crazy-max/ghaction-import-gpg@v6
78+
uses: crazy-max/ghaction-import-gpg@v7
7979
with:
8080
gpg_private_key: ${{ secrets.sign_key }}
8181
passphrase: ${{ secrets.sign_key_passphrase }}
@@ -132,7 +132,7 @@ jobs:
132132
RPMFILE=$(find "$HOME/RPMS" -name "*.rpm")
133133
rpmsign --addsign "$RPMFILE"
134134
135-
- uses: actions/upload-artifact@v4
135+
- uses: actions/upload-artifact@v7
136136
with:
137137
name: ${{ inputs.rpm_artifact_name }}
138138
path: ${{ steps.sign_rpm.outputs.rpm_path }}

0 commit comments

Comments
 (0)