Skip to content

Commit

Permalink
Merge branch 'main' into jayesh/style-flash-messages
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGaba authored Oct 15, 2024
2 parents 26c3e1d + cf8e979 commit 8c19ab7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/actions/check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ description: Run CI checks
runs:
using: composite
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.18
go-version: 1.23
- shell: bash
run: make build
- shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jobs:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/check
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./.github/actions/check
- uses: superfly/[email protected]
with:
args: "deploy"
- if: success()
uses: slackapi/slack-github-action@v1.18.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
"text": "deployed <https://github.com/${{ github.repository }}/commit/${{ github.sha}}|${{ github.sha }}>"
}
- if: failure()
uses: slackapi/slack-github-action@v1.18.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 as builder
FROM golang:1.23 as builder
RUN mkdir /app
WORKDIR /app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 as build
FROM golang:1.23 as build
RUN go install github.com/cortesi/modd/cmd/modd@latest
WORKDIR /app
COPY go.mod .
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/devict/job-board

go 1.18
go 1.23

require (
github.com/DATA-DOG/go-sqlmock v1.5.0
Expand Down

0 comments on commit 8c19ab7

Please sign in to comment.