Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/apps-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# This step runs a single command to execute unitary testing
- name: Test job
Expand All @@ -73,7 +73,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# Download and cache distribution of the requested Node.js version, and add it to the PATH
- name: Setup node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apps-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/apps-deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Yarn Install and Cache
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1
Expand All @@ -104,7 +104,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Yarn install and Cache dependencies
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1
Expand All @@ -121,7 +121,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Yarn install and Cache dependencies
uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# Install the python version needed
- name: Setup python
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
environment: production
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: main

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# Install the python version needed
- name: Setup python
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
commit-hash: ${{ steps.commit.outputs.commit_hash }}
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# checkout the latest commits of main -> this is where we will commit to
ref: main
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
LATEST_FILE_NAME_STAGING: ${{ needs.generate-matrix.outputs.latest }}
steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.update-deployed-stack.outputs.commit-hash }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/library-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# This step runs a single command to execute unitary testing
- name: Test job
Expand All @@ -100,7 +100,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# Set output variable tag with the current checked out ref
- name: Set Tag Number
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

# Configure AWS credential and region environment variables for use in next steps
- name: Configure AWS credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/library-deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
steps:
# Check-out repository under $GITHUB_WORKSPACE, so the job can access it
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-new-candidate-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
token: ${{ secrets.RELEASE_PLEASE_PAT }}
release-type: simple

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Tag major and minor versions
uses: jacobsvante/tag-major-minor-action@v0.1
Expand Down