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

GitHub Actions checkout v2 #2212

Merged
merged 1 commit into from Dec 26, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
in-docker_test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Build with Gradle
run: |
docker run -i --rm \
Expand All @@ -18,4 +18,3 @@ jobs:
-w "$PWD" \
openjdk:8-jdk-alpine \
./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'

4 changes: 2 additions & 2 deletions .github/workflows/gradle-release.yml
Expand Up @@ -8,12 +8,12 @@ jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Verify CI check status
- name: Verify CI check status
run: .github/workflows/scripts/check_ci_status.sh $GITHUB_SHA
- name: Release with Gradle
run: ./gradlew -Pversion=${GITHUB_REF##*/} release --scan --no-daemon -i
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-docs-version.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Checkout master
run: git checkout master
- name: Update latest_version property in mkdocs.yml
Expand Down