Skip to content

Commit 42d61ca

Browse files
chore(deps): update github actions
Signed-off-by: bootc-bot[bot] <225049296+bootc-bot[bot]@users.noreply.github.com>
1 parent 90070ce commit 42d61ca

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/auto-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Generate Bootc Actions Token
3030
id: bootc_token
31-
uses: actions/create-github-app-token@v2
31+
uses: actions/create-github-app-token@v3
3232
with:
3333
app-id: ${{ secrets.APP_ID }}
3434
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/autovendor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: cargo install cargo-vendor-filterer
1919
- name: Run
2020
run: mkdir -p target && cd crates/cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../../target/vendor.tar.zst
21-
- uses: actions/upload-artifact@v5
21+
- uses: actions/upload-artifact@v7
2222
with:
2323
name: vendor.tar.zst
2424
path: target/vendor.tar.zst

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161

162162
- name: Archive TMT logs
163163
if: always()
164-
uses: actions/upload-artifact@v5
164+
uses: actions/upload-artifact@v7
165165
with:
166166
name: tmt-log-PR-${{ github.event.number }}-${{ matrix.test_os }}-ostree-${{ env.ARCH }}
167167
path: /var/tmp/tmt
@@ -227,7 +227,7 @@ jobs:
227227

228228
- name: Archive TMT logs
229229
if: always()
230-
uses: actions/upload-artifact@v5
230+
uses: actions/upload-artifact@v7
231231
with:
232232
name: tmt-log-PR-${{ github.event.number }}-${{ matrix.test_os }}-cfs-${{ env.ARCH }}
233233
path: /var/tmp/tmt

.github/workflows/debug-arm64-upterm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
debug-arm64:
1010
runs-on: ubuntu-24.04-arm
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: Show system info
1515
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
1919
steps:
20-
- uses: actions/create-github-app-token@v2
20+
- uses: actions/create-github-app-token@v3
2121
id: app-token
2222
with:
2323
app-id: ${{ secrets.APP_ID }}
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Import GPG key
5555
if: github.event_name != 'push'
56-
uses: crazy-max/ghaction-import-gpg@v6
56+
uses: crazy-max/ghaction-import-gpg@v7
5757
with:
5858
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
5959
passphrase: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/scheduled-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
2424
steps:
25-
- uses: actions/create-github-app-token@v2
25+
- uses: actions/create-github-app-token@v3
2626
id: app-token
2727
with:
2828
app-id: ${{ secrets.APP_ID }}
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Import GPG key
7373
if: steps.check_schedule.outputs.should_release == 'true'
74-
uses: crazy-max/ghaction-import-gpg@v6
74+
uses: crazy-max/ghaction-import-gpg@v7
7575
with:
7676
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
7777
passphrase: ${{ secrets.GPG_PASSPHRASE }}
@@ -97,7 +97,7 @@ jobs:
9797
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
9898
9999
- name: Create Pull Request
100-
uses: peter-evans/create-pull-request@v7
100+
uses: peter-evans/create-pull-request@v8
101101
env:
102102
VERSION: ${{ steps.create_commit.outputs.VERSION }}
103103
with:

crates/ostree-ext/.github/workflows/rust.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Build
5858
run: cargo build --release --features=internal-testing-api
5959
- name: Upload binary
60-
uses: actions/upload-artifact@v5
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: ostree-ext-cli
6363
path: target/release/ostree-ext-cli
@@ -105,7 +105,7 @@ jobs:
105105
- name: Checkout repository
106106
uses: actions/checkout@v6
107107
- name: Download ostree-ext-cli
108-
uses: actions/download-artifact@v6.0.0
108+
uses: actions/download-artifact@v8.0.1
109109
with:
110110
name: ostree-ext-cli
111111
- name: Install
@@ -121,7 +121,7 @@ jobs:
121121
- name: Checkout repository
122122
uses: actions/checkout@v6
123123
- name: Download ostree-ext-cli
124-
uses: actions/download-artifact@v6.0.0
124+
uses: actions/download-artifact@v8.0.1
125125
with:
126126
name: ostree-ext-cli
127127
- name: Install
@@ -139,7 +139,7 @@ jobs:
139139
- name: Checkout repository
140140
uses: actions/checkout@v6
141141
- name: Download
142-
uses: actions/download-artifact@v6.0.0
142+
uses: actions/download-artifact@v8.0.1
143143
with:
144144
name: ostree-ext-cli
145145
- name: Install
@@ -159,7 +159,7 @@ jobs:
159159
repository: coreos/coreos-layering-examples
160160
path: coreos-layering-examples
161161
- name: Download
162-
uses: actions/download-artifact@v6.0.0
162+
uses: actions/download-artifact@v8.0.1
163163
with:
164164
name: ostree-ext-cli
165165
- name: Integration tests

0 commit comments

Comments
 (0)