diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index c13cbf92..94ceb43b 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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 @@ -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 diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index dfa9e2fc..077376cb 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -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 @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0cf6a738..265cfc21 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 @@ -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 @@ -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: @@ -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