Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/npm-run-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.event.repository.owner.login == 'git-for-windows'
environment: git-for-windows-ci-push
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: ${{ github.event.repository.full_name }}
ref: ${{ inputs.branch }}${{ github.event.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Publish GitHub Release from tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
token: ${{ secrets.PUSH_RELEASE_TRAINS_PAT }}
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: npm ci
- run: npm run build
- run: npm run lint
Expand All @@ -36,7 +36,7 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run this Action in-place
uses: ./
with:
Expand All @@ -49,8 +49,8 @@ jobs:
test-strip-prefix: # make sure the action works on a clean machine without building
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/checkout@v5
with:
repository: microsoft/vcpkg
path: compat/vcbuild/vcpkg
Expand Down
Loading