Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GitHub actions version #815

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/early-access.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Run default (non-native) build'
run: ./mvnw verify -Dmrm=false -B -ntp -e

- name: 'Upload daemon test logs'
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: daemon-test-logs-default-build
path: integration-tests/target/mvnd-tests/**/daemon*.log
Expand All @@ -57,7 +57,7 @@ jobs:

steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Set vars'
shell: bash
Expand Down Expand Up @@ -97,19 +97,19 @@ jobs:

- name: 'Upload daemon test logs'
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: daemon-test-logs-${{ env.OS }}
path: integration-tests/target/mvnd-tests/**/daemon*.log

- name: 'Upload m39 artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: mvnd-m39-${{ env.OS }}
path: dist-m39/target/maven-*-mvnd-*.zip

- name: 'Upload m40 artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: mvnd-m40-${{ env.OS }}
path: dist-m40/target/maven-*-mvnd-*.zip
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: 'Check out repository'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Set vars'
shell: bash
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: ./mvnw verify -Pnative -Dmrm=false -B -ntp -e -DskipTests -s .mvn/release-settings.xml

- name: 'Upload artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
Expand All @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-18.04
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: 'Set vars'
shell: bash
Expand All @@ -113,7 +113,7 @@ jobs:
run: ./mvnw clean verify -Psource-distribution -N -B -ntp -e

- name: 'Upload artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
Expand All @@ -126,21 +126,21 @@ jobs:

steps:
- name: 'Check out repository'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Download all build artifacts'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: 'Set up Java'
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'zulu'

- name: 'Cache Maven packages'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down