Skip to content

Commit

Permalink
Merge pull request #321 from ls1intum/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
MaisiKoleni authored Sep 12, 2023
2 parents 8a8596c + 155bf1d commit 257f973
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/asciidoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Build AsciiDoc documentation
steps:
- name: Checkout into ./repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: repo
- name: Extract revision info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
java: [11, 13, 15, 17]
name: Java ${{ matrix.java }} Run
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
Expand All @@ -42,7 +42,7 @@ jobs:
java: [17]
name: Java ${{ matrix.java }} Gradle Run
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-latest
name: Check Code Style
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 15
uses: actions/setup-java@v3
with:
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
name: SonarCloud Java 16
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand All @@ -114,7 +114,7 @@ jobs:
needs: [code-style, test, test-gradle]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 257f973

Please sign in to comment.