Skip to content

Commit

Permalink
Backport github: use stable version of GitHub actions (fluent#790)
Browse files Browse the repository at this point in the history
Signed-off-by: Kentaro Hayashi <[email protected]>
  • Loading branch information
kenhys committed Feb 6, 2025
1 parent 3e53dcd commit 8b20c19
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apt-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
test-docker-image: arm64v8/ubuntu:noble
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
test-docker-image: ubuntu:noble
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- label: Ubuntu Noble amd64
test-file: install-newly.sh lts
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install cmake
run: |
brew install cmake
Expand All @@ -42,7 +42,7 @@ jobs:
needs: build
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-macos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: cache msi
uses: actions/cache@v4
id: cache-msi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yum-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
test-docker-image: arm64v8/amazonlinux:2023
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/yum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
centos-stream: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- label: AmazonLinux 2023 x86_64
test-file: downgrade-to-v4.sh
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
rake-job: almalinux-9
test-lxc-image: images:almalinux/9
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down

0 comments on commit 8b20c19

Please sign in to comment.