Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-ghcrio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- prepare
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-tags: true

Expand Down Expand Up @@ -111,14 +111,14 @@ jobs:

- name: Check out code
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}
fetch-tags: true

- name: Check out code
if: github.event_name != 'workflow_dispatch'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-tags: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-centos-7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-debian-bookworm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-debian-bullseye.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-debian-buster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-rockylinux-8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-rockylinux-9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-ubuntu-18.04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-ubuntu-20.04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages-ubuntu-22.04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install libcairo2-dev mercurial pkg-config wget -y
gem install package_cloud
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
go-version: ${{ matrix.go }}

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

Expand Down
Loading