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

chore: update action versions #135

Merged
merged 4 commits into from
Mar 20, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 7 additions & 0 deletions .changeset/new-icons-sleep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'davinci-github-actions': major
---

---

- update dependencies (`actions/checkout`, `docker/metadata-action`, `xt0rted/pull-request-comment-branch`, `actions/upload-artifact`, `actions/github-script`)
sashuk marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 3 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.4.0
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand All @@ -36,7 +36,7 @@ jobs:
if: ${{ github.event.pull_request.head.ref != 'changeset-release/master' }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.4.0
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand All @@ -53,7 +53,7 @@ jobs:
name: Trufflehog Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3.4.0
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion build-push-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ runs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v4.3.0
with:
images: |
gcr.io/toptal-hub/${{ inputs.image-name }}
Expand Down
2 changes: 1 addition & 1 deletion generate-gql-types/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
create_credentials_file: true

- name: Setup Google cloud toolchain
uses: google-github-actions/setup-gcloud@v1.0.1
uses: google-github-actions/setup-gcloud@v1.1.0

- name: Check types cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion get-workflow-sha/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- id: branch
if: github.event_name == 'issue_comment'
uses: xt0rted/pull-request-comment-branch@v1.3.0
uses: xt0rted/pull-request-comment-branch@0cb1cc92a57e44274e9d862202f0d40df70f4478
sashuk marked this conversation as resolved.
Show resolved Hide resolved

- id: specify-sha
name: Specify SHA
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
run: yarn $COMMAND

- name: Store Cypress Screenshots Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
sashuk marked this conversation as resolved.
Show resolved Hide resolved
if: failure()
with:
name: cypress-screenshots
Expand Down
2 changes: 1 addition & 1 deletion is-team-member/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
env:
GITHUB_TOKEN: ${{ inputs.github-token }}

- uses: actions/github-script@v5
- uses: actions/github-script@v6
id: check-team-member
with:
github-token: ${{ inputs.github-token }}
Expand Down
2 changes: 1 addition & 1 deletion notify-jira-about-contribution/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ runs:

- name: Greet author
if: ${{ fromJson(steps.is-pr-eligible.outputs.result) == true && fromJson(steps.jira-issue-can-be-created.outputs.result) == true }}
uses: actions/github-script@v5
uses: actions/github-script@v6
sashuk marked this conversation as resolved.
Show resolved Hide resolved
with:
github-token: ${{ inputs.github-token }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion status-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: composite
steps:
- name: Set status check
uses: actions/github-script@v4
uses: actions/github-script@v6
env:
STATUS_TARGET_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
STATUS_STATE: ${{ inputs.state }}
Expand Down