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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
& $env:PGBIN\psql --username=scheduler --host=localhost --list timetable

- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Golang
uses: actions/setup-go@v5
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
PGPASSWORD=somestrong psql --username=scheduler --host=localhost --list timetable

- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Golang
uses: actions/setup-go@v5
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
PGPASSWORD=somestrong psql --username=scheduler --host=localhost --list timetable

- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Golang
uses: actions/setup-go@v5
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 @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.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@v4
uses: actions/checkout@v5

- name: Set up Golang
uses: actions/setup-go@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-version: '1.24'

- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Unshallow
run: git fetch --prune --unshallow
Expand All @@ -36,7 +36,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Version strings
id: version
Expand Down
Loading