diff --git a/.github/workflows/autoreview.yml b/.github/workflows/autoreview.yml index 460390246..bdda6a576 100644 --- a/.github/workflows/autoreview.yml +++ b/.github/workflows/autoreview.yml @@ -5,7 +5,7 @@ jobs: misspellcheck: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run misspell with reviewdog uses: reviewdog/action-misspell@v1 with: @@ -14,7 +14,7 @@ jobs: checklinks: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Link Checker uses: lycheeverse/lychee-action@v1.8.0 with: @@ -23,12 +23,12 @@ jobs: guids: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: .github/workflows/guids.sh build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.2' diff --git a/.github/workflows/en-updates-to-translation-repo.yml b/.github/workflows/en-updates-to-translation-repo.yml index c0ab429dc..50c7d4aae 100644 --- a/.github/workflows/en-updates-to-translation-repo.yml +++ b/.github/workflows/en-updates-to-translation-repo.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Get repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install mdpo run: pip install mdpo - name: Create folder for files to be copied diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea678c93e..4bd1ea06a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: sudo apt-get install ruby-full build-essential zlib1g-dev git - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/translation-updates-to-main-repo.yml b/.github/workflows/translation-updates-to-main-repo.yml index 67bda2547..63d4ba39c 100644 --- a/.github/workflows/translation-updates-to-main-repo.yml +++ b/.github/workflows/translation-updates-to-main-repo.yml @@ -25,11 +25,11 @@ jobs: steps: # Check out the repository and download it to the runner, allowing to run actions against the code - name: Get main repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master - name: Get translation repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: translation-files path: translation-files