Skip to content

Commit

Permalink
Next release (#939)
Browse files Browse the repository at this point in the history
* fix: update packages and replace node-saas (#930)

* update packages and replace node-saas

* upgrade packages

* update gh action versions

* feat: css grid (#931)

* add css grid for content cards

* remove height from content cards

---------

Co-authored-by: Nathan Rogan <nathanroagn@centro.org.uk>

* feat: sticky position (#932)

* add css grid for content cards

* remove height from content cards

* add sticky position to utilities

* update cards to use css-grid (#933)

* update lock file

* update release yml (#935)

* action version updates (#938)

---------

Co-authored-by: Nathan Rogan <nathanroagn@centro.org.uk>
  • Loading branch information
rolorogan and Nathan Rogan committed Mar 14, 2023
1 parent b213e84 commit 33d1973
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Can merge to branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checking if branch is allowed...
if: "github.base_ref == 'main' && github.head_ref != 'next-release'"
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand All @@ -28,15 +28,15 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
# Override language selection by uncommenting this and choosing your languages
with:
languages: javascript

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -50,4 +50,4 @@ jobs:
# make next-release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-latest
if: "startsWith(github.base_ref, 'next-release')"
steps:
- uses: amannn/action-semantic-pull-request@v1.2.0
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release-notes-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/release-notes-preview@v1.6.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Deploy build folder to Netlify IF the branch is main
- name: Deploy to Netlify
if: github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'ci:') && !contains(github.event.head_commit.message, '[skip netlify]')
uses: nwtgck/actions-netlify@v1.1.11
uses: nwtgck/actions-netlify@v2
with:
publish-dir: './build'
production-branch: main
Expand Down

0 comments on commit 33d1973

Please sign in to comment.