Skip to content

Commit

Permalink
Update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Oct 29, 2024
1 parent 5490b1e commit b632b49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.number }}/merge

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.number }}/merge

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

# This gets killed, probably due to memory usage
# - name: Lint
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: make python-deps
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

# This gets killed, probably due to memory usage
# - name: Lint
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: make python-deps
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Dump github ref
run: echo "$GITHUB_REF"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-go@v3
with:
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
- release-docker-internal

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down

0 comments on commit b632b49

Please sign in to comment.