Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade various github actions. #21742

Open
wants to merge 1 commit into
base: 2.23.x
Choose a base branch
from
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
8 changes: 4 additions & 4 deletions .github/workflows/auto-cherry-picker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
merge_commit: ${{ steps.get-prereqs.outputs.merge_commit }}
matrix: ${{ steps.get-prereqs.outputs.matrix }}
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: npm install ./build-support/cherry_pick
- id: get-prereqs
name: Get Cherry-Pick prerequisites
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
include: ${{ fromJSON(needs.prerequisites.outputs.matrix) }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.WORKER_PANTS_CHERRY_PICK_PAT }}
- name: Prepare cherry-pick branch
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
if: needs.prerequisites.result == 'success' && (success() || failure())
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: npm install ./build-support/cherry_pick
- name: Run Script
uses: actions/github-script@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ jobs:
channel-id: C18RRR4JK
payload-file-path: ${{ runner.temp }}/slack_announcement.json
- name: Announce to pants-devel
uses: dawidd6/action-send-mail@v3.8.0
uses: dawidd6/action-send-mail@v4
with:
body: file://${{ runner.temp }}/email_announcement_body.md
connection_url: ${{ secrets.EMAIL_CONNECTION_URL }}
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants_release/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

def action(name: str) -> str:
version_map = {
"action-send-mail": "dawidd6/action-send-mail@v3.8.0",
"action-send-mail": "dawidd6/action-send-mail@v4",
"cache": "actions/cache@v4",
"checkout": "actions/checkout@v4",
"download-artifact": "actions/download-artifact@v4",
Expand Down
Loading