Skip to content

Commit f74d9b2

Browse files
committed
Updating github actions.
1 parent c1c31e9 commit f74d9b2

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/workflows/_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
container: ${{ matrix.container }}
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Install dependencies for Linux
3232
if: matrix.os == 'ubuntu-latest'
@@ -38,12 +38,12 @@ jobs:
3838
with:
3939
toolchain: stable
4040

41-
- uses: clechasseur/rs-cargo@v1
41+
- uses: clechasseur/rs-cargo@v3
4242
if: ${{ !inputs.isRelease }}
4343
with:
4444
command: build
4545

46-
- uses: clechasseur/rs-cargo@v1
46+
- uses: clechasseur/rs-cargo@v3
4747
if: ${{ inputs.isRelease }}
4848
with:
4949
command: build
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Upload Artifacts
7070
if: inputs.isRelease
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: LoreCoreLibrary_${{ matrix.os}}
7474
path: artifacts

.github/workflows/_test_loadability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Download Artifacts
19-
uses: actions/download-artifact@v3
19+
uses: actions/download-artifact@v4
2020
with:
2121
name: LoreCoreLibrary_${{ matrix.os }}
2222
path: artifacts

.github/workflows/_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
os: [ubuntu-latest, windows-latest, macos-latest]
1010
runs-on: ${{ matrix.os }}
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Install dependencies for Linux
1515
if: matrix.os == 'ubuntu-latest'
@@ -21,18 +21,18 @@ jobs:
2121
with:
2222
toolchain: stable
2323

24-
- uses: clechasseur/rs-cargo@v1
24+
- uses: clechasseur/rs-cargo@v3
2525
if: ${{ github.ref_name != 'main' }}
2626
with:
2727
command: test
2828
args: -- --nocapture
2929

30-
- uses: clechasseur/rs-cargo@v1
30+
- uses: clechasseur/rs-cargo@v3
3131
if: ${{ github.ref_name == 'main' }}
3232
with:
3333
command: test
3434
args: --release -- --nocapture
3535

36-
- uses: clechasseur/rs-cargo@v1
36+
- uses: clechasseur/rs-cargo@v3
3737
with:
3838
command: clippy

.github/workflows/check_for_no_missing_todos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Check for TODOs
1717
run: |

.github/workflows/check_for_updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Check for outdated dependencies
1515
run: |

.github/workflows/check_if_changelogs_were_updated.yml.disabled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
checkForChangelog:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0 #check out all commits
1313
sparse-checkout: changelogs

.github/workflows/check_licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1212

1313
- name: Check licenses
1414
run: ./scripts/check_licenses.sh

.github/workflows/release_binaries.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
sparse-checkout: changelogs
3030

@@ -35,7 +35,7 @@ jobs:
3535
run: mv changelogs/current.md changelogs/changelog.md
3636

3737
- name: Upload Changelog
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: Changelog
4141
path: changelogs/changelog.md
@@ -49,17 +49,17 @@ jobs:
4949

5050
steps:
5151
- name: Download Linux Artifacts
52-
uses: actions/download-artifact@v3
52+
uses: actions/download-artifact@v4
5353
with:
5454
name: LoreCoreLibrary_ubuntu-latest
5555
path: artifactsLinux
5656
- name: Download Windows Artifacts
57-
uses: actions/download-artifact@v3
57+
uses: actions/download-artifact@v4
5858
with:
5959
name: LoreCoreLibrary_windows-latest
6060
path: artifactsWindows
6161
- name: Download MacOS Artifacts
62-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4
6363
with:
6464
name: LoreCoreLibrary_macos-latest
6565
path: artifactsMacOS
@@ -71,7 +71,7 @@ jobs:
7171
zip -r binariesMacOS.zip artifactsMacOS
7272
7373
- name: Download Changelog
74-
uses: actions/download-artifact@v3
74+
uses: actions/download-artifact@v4
7575
with:
7676
name: Changelog
7777
path: .
@@ -85,7 +85,7 @@ jobs:
8585
cat changelog.md
8686
8787
- name: Upload Binaries
88-
uses: softprops/action-gh-release@v1
88+
uses: softprops/action-gh-release@v2
8989
with:
9090
files: binaries*.zip
9191
body_path: changelog.md

0 commit comments

Comments
 (0)