Skip to content

Commit

Permalink
Merge pull request #76 from stranne/feature/update-github-actions-ver…
Browse files Browse the repository at this point in the history
…sions

chore: Update GitHub Actions to use Node.js 20 compatible versions
  • Loading branch information
jolexxa authored Aug 16, 2024
2 parents d416ada + 7799577 commit 42a8c8d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/install_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
shell: bash
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down Expand Up @@ -109,10 +109,10 @@ jobs:
shell: bash
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: gh release create --generate-notes "v${{ steps.next-version.outputs.version }}"

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
shell: bash
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down
2 changes: 1 addition & 1 deletion TestPackage/.github/workflows/auto_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
should_release: ${{ steps.release.outputs.should_release }}
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🧑‍🔬 Check Test Results
id: tests
Expand Down
4 changes: 2 additions & 2 deletions TestPackage/.github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
lfs: true
submodules: 'recursive'
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
run: gh release create --generate-notes "v${{ steps.next-version.outputs.version }}"

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down
2 changes: 1 addition & 1 deletion TestPackage/.github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run:
working-directory: '.'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: 🧾 Checkout

- uses: streetsidesoftware/cspell-action@v2
Expand Down
4 changes: 2 additions & 2 deletions TestPackage/.github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
shell: bash
steps:
- name: 🧾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 💽 Setup .NET SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
# Use the .NET SDK from global.json in the root of the repository.
global-json-file: global.json
Expand Down

0 comments on commit 42a8c8d

Please sign in to comment.