Skip to content

Commit 929078d

Browse files
committed
Bumped up Github actions versions.
1 parent 94e62b7 commit 929078d

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cargo-build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Get current Rust version
1818
id: get-rust-version
1919
run: echo VERSION=$(rustc --version | sed s/\ /_/g) >> "$GITHUB_OUTPUT"
2020

2121
- name: Cache Rust dependencies and artifacts
2222
id: cache-rust
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: |
2626
~/.cargo/registry/index
@@ -46,15 +46,15 @@ jobs:
4646
os: ubuntu
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v6
5050

5151
- name: Get current Rust version
5252
id: get-rust-version
5353
run: echo VERSION=$(rustc --version | sed s/\ /_/g) >> "$GITHUB_OUTPUT"
5454

5555
- name: Cache Rust dependencies and artifacts
5656
id: cache-rust
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: |
6060
~/.cargo/registry/index
@@ -83,7 +83,7 @@ jobs:
8383
run: tar -cvjf pterodapter-${{ matrix.os }}-${{ matrix.arch }}.tar.bz2 -C target/${{ matrix.arch }}-unknown-linux-gnu/release pterodapter
8484

8585
- name: Upload application
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v7
8787
with:
8888
name: pterodapter-${{ matrix.os }}-${{ matrix.arch }}
8989
path: pterodapter-*.tar.bz2
@@ -98,15 +98,15 @@ jobs:
9898
arch: [aarch64, x86_64]
9999

100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v6
102102

103103
- name: Get current Rust version
104104
id: get-rust-version
105105
run: echo VERSION=$(rustc --version | sed s/\ /_/g) >> "$GITHUB_OUTPUT"
106106

107107
- name: Cache Rust dependencies and artifacts
108108
id: cache-rust
109-
uses: actions/cache@v4
109+
uses: actions/cache@v5
110110
with:
111111
path: |
112112
~/.cargo/registry/index
@@ -126,7 +126,7 @@ jobs:
126126
run: tar -cvjf pterodapter-${{ runner.os }}-${{ matrix.arch }}.tar.bz2 -C target/${{ matrix.arch }}-apple-darwin/release pterodapter
127127

128128
- name: Upload application
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v7
130130
with:
131131
name: pterodapter-${{ runner.os }}-${{ matrix.arch }}
132132
path: pterodapter-*.tar.bz2
@@ -136,7 +136,7 @@ jobs:
136136
needs: [ "build-linux", "build-macos" ]
137137
steps:
138138
- name: Merge all applications
139-
uses: actions/upload-artifact/merge@v4
139+
uses: actions/upload-artifact/merge@v7
140140
with:
141141
name: pterodapter-all
142142
pattern: pterodapter-*

0 commit comments

Comments
 (0)