Skip to content

Commit

Permalink
GitHub Actions checkout v2 (#2212)
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis authored and rnorth committed Dec 26, 2019
1 parent 938c09a commit 2cfd349
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
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

0 comments on commit 2cfd349

Please sign in to comment.