Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test #73

Closed
wants to merge 7 commits into from
Closed

Test #73

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/cd-oidc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository'

- name: Configure AWS Credentials
Expand All @@ -41,4 +41,4 @@ jobs:
- name: Deploy changes
run: |
brew install awsebcli
eb deploy
eb deploy
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository'

- uses: burnett01/rsync-deployments@23a557dceb19f9bb960ef40cf75cab5e9b37ec1f
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository'

- uses: burnett01/rsync-deployments@23a557dceb19f9bb960ef40cf75cab5e9b37ec1f
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
# Define the steps for this job
steps:
- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository'

- name: 'Install Dependencies'
Expand All @@ -46,7 +46,7 @@ jobs:
working-directory: ./web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository'

- name: 'Install Dependencies'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: SirrafuS/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/interactions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
response:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: SirrafuS/checkout@v2
- uses: actions/first-interaction@main
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# ======================================================
# Checkout the branch infra and the repository
# ======================================================
- uses: actions/checkout@v2
- uses: SirrafuS/checkout@v2
name: 'Checkout repository and infra branch'
with:
ref: infra
Expand Down
2 changes: 1 addition & 1 deletion web/routes/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const express = require('express')
const router = express.Router()

/* GET users listing. */
router.get('/users', function (req, res, next) {
router.get('/', function (req, res, next) {
res.send('respond with a resource')
})

Expand Down
Loading