Skip to content

Commit

Permalink
Updated checkout version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkarinage committed May 15, 2024
1 parent 91b501b commit e1e8b68
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/analysis_codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
#- name: Autobuild
# uses: github/codeql-action/autobuild@v2

# ✏️ If the Autobuild fails above, remove it and uncomment the following
# ?? If the Autobuild fails above, remove it and uncomment the following
# three lines and modify them (or add more) to build your code if your
# project uses a compiled language
- name: Command - configure
Expand All @@ -89,4 +89,4 @@ jobs:
run: make server

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
clang: ['6.0', '7', '8', '9', '10', '11'] #, '12', '13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Clang
uses: egor-tensin/setup-clang@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Install latest CMake.
- uses: lukka/get-cmake@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
gcc: ['9', '10', '11', '12', '13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Update & Install packages
# Ubuntu runners already have most of the packages rAthena requires to build.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_modes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
mode: ['PRE','RE']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# A simple 'yes' and 'no' can be confusing, so we use names to display in the current job then convert them for use in the compiler.
- name: Variable Parsing - PRE
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_servers_msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
mode: ['PRE', 'RE']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v2

- name: Build solution in Debug
if: ${{ matrix.mode == 'PRE' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_packetversions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
packetver: ['20211103', '20200902', '20200401', '20180620', '20151104']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# A simple 'yes' and 'no' can be confusing, so we use names to display in the current job then convert them for use in the compiler.
- name: Variable Parsing - PRE
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_servers_vip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
mode: ['PRE', 'RE']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# A simple 'yes' and 'no' can be confusing, so we use names to display in the current job then convert them for use in the compiler.
- name: Variable Parsing - PRE
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npc_db_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
mode: ['PRE', 'RE']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# A simple 'yes' and 'no' can be confusing, so we use names to display in the current job then convert them for use in the compiler.
- name: Variable Parsing - PRE
Expand Down

0 comments on commit e1e8b68

Please sign in to comment.