Skip to content
Merged
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/backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Install NodeJS
- name: Install latest LTS version of Node.js
uses: actions/setup-node@v6
Expand All @@ -41,7 +41,7 @@ jobs:
# Enabling cache
- name: Caching Gatsby
id: gatsby-cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
public
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: get short sha
run: |
SHORT_SHA=$(git rev-parse --short HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/previews.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Install NodeJS
- name: Install latest LTS version of Node.js
uses: actions/setup-node@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
# Get tag from action input
Expand All @@ -51,7 +51,7 @@ jobs:
# Checkout tag from repo
- name: Checkout correct repository
if: ${{ github.event_name == 'workflow_dispatch' && github.events.inputs.tag }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ env.tag }}
# Install NodeJS
Expand All @@ -63,7 +63,7 @@ jobs:
# Enabling cache
- name: Caching Gatsby
id: gatsby-cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
public
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Install NodeJS
- name: Install latest LTS version of Node.js
uses: actions/setup-node@v6
Expand All @@ -31,7 +31,7 @@ jobs:
# Enabling cache
- name: Caching Gatsby
id: gatsby-cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
public
Expand Down
Loading