Skip to content

Commit

Permalink
chore: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sashuk committed Mar 17, 2023
1 parent e5ae3d6 commit 9fd144c
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 11 deletions.
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': patch
---

---

- update dependencies (`actions/checkout`, `docker/metadata-action`, `xt0rted/pull-request-comment-branch`, `actions/upload-artifact`, `actions/github-script`)
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@v1.4.0

- 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
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
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

0 comments on commit 9fd144c

Please sign in to comment.