Skip to content

Commit

Permalink
Update github actions from v3 to v4 (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
denieler authored Jan 16, 2025
1 parent 49a0275 commit 913c8cb
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions .changeset/polite-balloons-melt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
'davinci-github-actions': patch
---

---

### integration-tests

- update github actions from v3 to v4

### generate-gql-types

- update github actions from v3 to v4
2 changes: 1 addition & 1 deletion create-matrix/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Matrix
id: set-matrix
Expand Down
6 changes: 3 additions & 3 deletions generate-gql-types/action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Generate GQL Types
description: Generate graphql types before application build

inputs:
generate-types-command:
description: Command to generate gql types
default: generate:types
gcr-gql-schemas-bucket-token:
gcr-gql-schemas-bucket-token:
description: Necessary token to pull gql schema from google cloud
required: true

Expand All @@ -22,7 +22,7 @@ runs:
uses: google-github-actions/setup-gcloud@v1.1.1

- name: Check types cache
uses: actions/cache@v3
uses: actions/cache@v4
id: gql-types-cache
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
- name: Cache Cypress folder
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: '~/.cache/Cypress'
key: cypress-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -36,7 +36,7 @@ runs:
run: yarn $COMMAND

- name: Store Cypress Screenshots Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
Expand Down
2 changes: 1 addition & 1 deletion report-missing-changeset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Not specified

```yaml
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 913c8cb

Please sign in to comment.