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 actions/checkout from 2 to 3 in /.github/workflows #2059

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Restore Gradle cache
id: cache
uses: actions/[email protected]
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.ARM_TENANT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Terraform environment
uses: little-core-labs/[email protected]
with:
Expand All @@ -72,7 +72,7 @@ jobs:
name: Deploy Static Web App
needs: [ build ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download Static Web App Artifact
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish-kjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

# Build Android application
- name: Android App
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

# Build Desktop Uber Jar application
- name: Desktop Uber Jar
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

# Build Desktop Uber Jar application
- name: Desktop Uber Jar
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

# Build Desktop Uber Jar application
- name: Desktop Uber Jar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

# Run Maintenance Tasks
- name: Maintenance Run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tf-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ARM_TENANT_ID: ${{ secrets.ARM_TENANT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Terraform environment
uses: little-core-labs/[email protected]
with:
Expand Down