Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/auto-pr-reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
PR_TITLE: ${{ github.event.pull_request.title }}
steps:
- name: Checkout auto-pr scripts
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: scalar-labs/actions
sparse-checkout: auto-pr-script
ref: main
path: auto-pr

- name: Checkout the target repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# This is necessary to avoid unexpected auto-merge in git cherry-pick
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-translate-docs-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/vuln-check-reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout vuln-check scripts
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: scalar-labs/actions
sparse-checkout: vuln-check-script
Expand Down Expand Up @@ -82,18 +82,18 @@ jobs:
fi

- name: Checkout the target repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ steps.prepare-target-ref.outputs.target-ref }}

- name: Set up JDK 8
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v5

- name: Docker build
run: ./gradlew docker
Expand All @@ -120,7 +120,7 @@ jobs:
done

- name: Upload images as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docker-images-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.target-ref }}
path: images_output
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
fi

- name: Download Docker images artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: docker-images-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.target-ref }}

Expand Down