Skip to content

Commit

Permalink
Use actions/checkout@v3.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Sep 5, 2023
1 parent c02c205 commit 2f191a2
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ssh-key: "${{ secrets.SSH_PRIVATE_KEY }}"
- name: "🔧 Prepare environment"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os: [ ubuntu-22.04 ]
steps:
- name: "☁ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ssh-key: "${{ secrets.SSH_PRIVATE_KEY }}"
- name: "🔧 Prepare environment"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-graalvm-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-junit-platform-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-native-gradle-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
Expand All @@ -59,7 +59,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
Expand All @@ -86,7 +86,7 @@ jobs:
os: [ windows-latest ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-native-maven-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
Expand All @@ -57,7 +57,7 @@ jobs:
os: [ windows-latest ]
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
Expand Down

0 comments on commit 2f191a2

Please sign in to comment.