Skip to content

Commit

Permalink
build(template): update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed May 30, 2024
1 parent 8a03cbc commit 7919bfe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
samples/${{ matrix.sample }}/build/gradle-jvm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: template/pack.cmd -Version ${{ github.ref_name }}
- uses: actions/create-release@v1
id: create_release
Expand Down
10 changes: 5 additions & 5 deletions template/content/.github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
Build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
build/gradle-jvm
Expand All @@ -18,18 +18,18 @@ jobs:
~/.gradle/wrapper
key: ${{ runner.os }}-Build-${{ hashFiles('gradlew.bat', 'src/dotnet/*/*.csproj', 'src/dotnet/*.props', 'gradle-wrapper.properties') }}
- run: ./gradlew :buildPlugin --no-daemon
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ github.event.repository.name }}.CI.${{ github.ref_name }}
path: output
Test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
build/gradle-jvm
Expand Down
2 changes: 1 addition & 1 deletion template/content/.github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
Publish:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
- run: ./gradlew :publishPlugin -PBuildConfiguration="Release" -PPluginVersion="${{ github.ref_name }}" -PPublishToken="${{ env.PUBLISH_TOKEN }}"
Expand Down

0 comments on commit 7919bfe

Please sign in to comment.