Skip to content

Commit

Permalink
Update github action dependencies due to deprecated node version in g…
Browse files Browse the repository at this point in the history
…ithub actions
  • Loading branch information
rabelenda committed Mar 13, 2024
1 parent e4775d2 commit fade51b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
concurrency: azure_test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
java-version: 11
cache: maven
- name: Install dependencies
run: dotnet restore
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:
runs-on: ubuntu-latest
concurrency: remote_test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8
java-version: 11
cache: maven
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18'
- uses: pnpm/action-setup@v2
node-version: '20'
- uses: pnpm/action-setup@v3
with:
version: 8
- name: check version
Expand All @@ -40,7 +40,7 @@ jobs:
- name: update docs version
run: .github/fix-docs-version.sh ${{ inputs.version }}
- name: commit release version
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[skip ci] Set release version'
branch: main
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: update to next ALPHA version
run: .github/fix-project-version.sh ${{ env.ALPHA_VERSION }}
- name: commit ALPHA version
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[skip ci] Set ALPHA version'
branch: main
Expand All @@ -82,7 +82,7 @@ jobs:
run: .github/vuepress-deploy.sh
env:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: abstracta/jmeter-dotnet-dsl-sample
path: jmeter-dotnet-dsl-sample
Expand Down

0 comments on commit fade51b

Please sign in to comment.