Skip to content

Commit f134b98

Browse files
committed
Update action versions.
1 parent 8cdd767 commit f134b98

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
check:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

21-
- uses: actions/cache/restore@v4
21+
- uses: actions/cache/restore@v5
2222
with:
2323
path: |
2424
~/.cargo/registry/index/

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
check:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Install jotdown
1717
run: cargo install jotdown@0.8.1 --locked
1818
- name: Generate documentation and run unit tests

.github/workflows/msrv.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

15-
- uses: actions/cache@v4
15+
- uses: actions/cache@v5
1616
with:
1717
path: |
1818
~/.cargo/registry/index/

.github/workflows/playground.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727

28-
- uses: actions/cache/restore@v4
28+
- uses: actions/cache/restore@v5
2929
with:
3030
path: |
3131
~/.cargo/registry/index/
@@ -56,10 +56,10 @@ jobs:
5656
mv docs/MANUAL.xhtml jaq-play/manual/index.html
5757
5858
- name: Upload artifact
59-
uses: actions/upload-pages-artifact@v3
59+
uses: actions/upload-pages-artifact@v4
6060
with:
6161
path: 'jaq-play'
6262

6363
- name: Deploy to GitHub Pages
6464
id: deployment
65-
uses: actions/deploy-pages@v4
65+
uses: actions/deploy-pages@v5

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: create-release
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- name: Create GitHub release
3333
env:
3434
GH_TOKEN: ${{ github.token }}
@@ -58,11 +58,11 @@ jobs:
5858
- { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 }
5959
- { target: x86_64-unknown-linux-musl , os: ubuntu-22.04 }
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262

6363
- name: Restore cached Cargo registry
6464
if: ${{ !contains(matrix.target, '-pc-windows-') }}
65-
uses: actions/cache/restore@v4
65+
uses: actions/cache/restore@v5
6666
with:
6767
path: |
6868
~/.cargo/registry/index/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- { target: i686-unknown-linux-gnu }
2424
- { target: x86_64-unknown-linux-gnu }
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727

28-
- uses: actions/cache/restore@v4
28+
- uses: actions/cache/restore@v5
2929
with:
3030
path: |
3131
~/.cargo/registry/index/

0 commit comments

Comments
 (0)