Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ea751a9

Browse filesBrowse files
committed
Update other Actions from v2 to v3
1 parent a2949f4 commit ea751a9
Copy full SHA for ea751a9
Expand file treeCollapse file tree

13 files changed

+14
-14
lines changed

‎.github/workflows/__debug-artifacts.yml

Copy file name to clipboardExpand all lines: .github/workflows/__debug-artifacts.yml
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/workflows/__go-custom-queries.yml

Copy file name to clipboardExpand all lines: .github/workflows/__go-custom-queries.yml
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/workflows/__go-custom-tracing-autobuild.yml

Copy file name to clipboardExpand all lines: .github/workflows/__go-custom-tracing-autobuild.yml
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/workflows/__go-custom-tracing.yml

Copy file name to clipboardExpand all lines: .github/workflows/__go-custom-tracing.yml
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/workflows/post-release-mergeback.yml

Copy file name to clipboardExpand all lines: .github/workflows/post-release-mergeback.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: echo "$GITHUB_CONTEXT"
3636

3737
- uses: actions/checkout@v3
38-
- uses: actions/setup-node@v2
38+
- uses: actions/setup-node@v3
3939

4040
- name: Update git config
4141
run: |

‎.github/workflows/pr-checks.yml

Copy file name to clipboardExpand all lines: .github/workflows/pr-checks.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
- uses: actions/checkout@v3
7777
- name: Set up Python
78-
uses: actions/setup-python@v2
78+
uses: actions/setup-python@v3
7979
with:
8080
python-version: 3.8
8181
- name: Install dependencies
@@ -253,7 +253,7 @@ jobs:
253253
& $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
254254
255255
- name: Upload tracer logs
256-
uses: actions/upload-artifact@v2
256+
uses: actions/upload-artifact@v3
257257
with:
258258
name: tracer-logs
259259
path: ./codeql-runner/compound-build-tracer.log

‎.github/workflows/python-deps.yml

Copy file name to clipboardExpand all lines: .github/workflows/python-deps.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
125125
- uses: actions/checkout@v3
126126

127-
- uses: actions/setup-python@v2
127+
- uses: actions/setup-python@v3
128128
with:
129129
python-version: ${{ matrix.python_version }}
130130

‎.github/workflows/update-release-branch.yml

Copy file name to clipboardExpand all lines: .github/workflows/update-release-branch.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 0
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v3
3333
with:
3434
python-version: 3.8
3535

‎.github/workflows/update-supported-enterprise-server-versions.yml

Copy file name to clipboardExpand all lines: .github/workflows/update-supported-enterprise-server-versions.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Setup Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v3
1717
with:
1818
python-version: "3.7"
1919
- name: Checkout CodeQL Action

‎pr-checks/checks/debug-artifacts.yml

Copy file name to clipboardExpand all lines: pr-checks/checks/debug-artifacts.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps:
1313
run: ./build.sh
1414
- uses: ./../action/analyze
1515
id: analysis
16-
- uses: actions/download-artifact@v2
16+
- uses: actions/download-artifact@v3
1717
with:
1818
name: my-debug-artifacts-${{ matrix.os }}-${{ matrix.version }}
1919
- shell: bash

‎pr-checks/checks/go-custom-queries.yml

Copy file name to clipboardExpand all lines: pr-checks/checks/go-custom-queries.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Go: Custom queries"
22
description: "Checks that Go works in conjunction with a config file specifying custom queries"
33
steps:
4-
- uses: actions/setup-go@v2
4+
- uses: actions/setup-go@v3
55
with:
66
go-version: "^1.13.1"
77
- uses: ./../action/init

‎pr-checks/checks/go-custom-tracing-autobuild.yml

Copy file name to clipboardExpand all lines: pr-checks/checks/go-custom-tracing-autobuild.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ os: ["ubuntu-latest", "macos-latest"]
44
env:
55
CODEQL_EXTRACTOR_GO_BUILD_TRACING: "true"
66
steps:
7-
- uses: actions/setup-go@v2
7+
- uses: actions/setup-go@v3
88
with:
99
go-version: "^1.13.1"
1010
- uses: ./../action/init

‎pr-checks/checks/go-custom-tracing.yml

Copy file name to clipboardExpand all lines: pr-checks/checks/go-custom-tracing.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: "Checks that Go tracing works"
33
env:
44
CODEQL_EXTRACTOR_GO_BUILD_TRACING: "true"
55
steps:
6-
- uses: actions/setup-go@v2
6+
- uses: actions/setup-go@v3
77
with:
88
go-version: "^1.13.1"
99
- uses: ./../action/init

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.