Skip to content

Commit

Permalink
Merge pull request #142 from bgilbert/checkout
Browse files Browse the repository at this point in the history
workflows: bump `actions/checkout` to v4
  • Loading branch information
bgilbert authored Sep 29, 2023
2 parents 041f2c1 + 06d23ec commit dbe521f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/openslide-winbuild
- name: Build container
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pkgver: ${{ steps.params.outputs.pkgver }}
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Find builder container digest
id: find
uses: ./.github/find-container-digest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pkgver: ${{ steps.params.outputs.pkgver }}
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Find builder container digest
id: find
uses: ./.github/find-container-digest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pkgver: ${{ steps.params.outputs.pkgver }}
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Find builder container digest
id: find
uses: ./.github/find-container-digest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,22 @@ jobs:
version_suffix: ${{ steps.prep.outputs.version_suffix }}
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ inputs.openslide_winbuild_repo }}
ref: ${{ inputs.openslide_winbuild_ref }}

- name: Check out OpenSlide
if: inputs.openslide_repo != ''
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ inputs.openslide_repo }}
ref: ${{ inputs.openslide_ref }}
path: override/openslide
persist-credentials: false
- name: Check out OpenSlide Java
if: inputs.openslide_java_repo != ''
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ inputs.openslide_java_repo }}
ref: ${{ inputs.openslide_java_ref }}
Expand Down

0 comments on commit dbe521f

Please sign in to comment.